mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 15:16:30 +03:00
6 lines
110 B
PHP
6 lines
110 B
PHP
<?php
|
|
|
|
foreach (glob(dirname(__DIR__).'/var/cache/prod/*.preload.php') ?: [] as $file) {
|
|
require $file;
|
|
}
|