1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-07 09:10:03 +01:00
Files
laravel-valet/cli/includes/require-legacy-files.php
2022-12-07 16:10:48 -05:00

8 lines
161 B
PHP

<?php
foreach (scandir('./cli/includes/legacy') as $file) {
if (substr($file, 0, 1) !== '.') {
require_once './cli/includes/legacy/'.$file;
}
}