1234567891011121314151617181920 |
- <?php
- include __DIR__ . '/vendor/autoload.php';
- date_default_timezone_set('UTC');
- if ( ! is_dir(__DIR__ . '/tests/files')) {
- mkdir(__DIR__ . '/tests/files', 0777, true);
- }
- $fs = new League\Flysystem\Adapter\Local(__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']);
- }
- }
- // Constant which show when tests are run on windows
- define("IS_WINDOWS", strtolower(substr(PHP_OS, 0, 3)) === 'win');
|