7 lines
173 B
PHP
Executable File
7 lines
173 B
PHP
Executable File
<?php
|
|
|
|
$config = array();
|
|
foreach (glob(__DIR__ . '/routes/routes.*.php') as $filename) {
|
|
$config = array_merge_recursive($config, include($filename));
|
|
}
|
|
return $config; |