2018-05-15 17:30:16 +02:00

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;