mirror of
https://github.com/laravel/valet.git
synced 2026-02-07 09:10:03 +01:00
8 lines
161 B
PHP
8 lines
161 B
PHP
<?php
|
|
|
|
foreach (scandir('./cli/includes/legacy') as $file) {
|
|
if (substr($file, 0, 1) !== '.') {
|
|
require_once './cli/includes/legacy/'.$file;
|
|
}
|
|
}
|