Файл: concrete5.7.5.6/concrete/vendor/concrete5/flysystem/phpunit.php
Строк: 15
<?php
@include __DIR__.'/vendor/autoload.php';
date_default_timezone_set('America/Los_Angeles');
if ( ! is_dir(__DIR__.'/tests/files')) {
mkdir(__DIR__.'/tests/files', 0777, true);
}
$fs = new ConcreteFlysystemAdapterLocal(__DIR__.'/tests/files');
foreach (array_reverse($fs->listContents()) as $info) {
if (is_file(__DIR__.'/tests/files/'.$info['path'])) {
unlink(__DIR__.'/tests/files/'.$info['path']);
} else {
rmdir(__DIR__.'/tests/files/'.$info['path']);
}
}