| 123456789101112131415161718192021 |
- <?php
- /**
- * Created by PhpStorm.
- * User: chendeben
- * Date: 2019-02-22
- * Time: 16:50
- */
- namespace Heanup\Config;
- use Heanup\Frame\Config;
- class Route extends Config
- {
- public static function getData($section = null)
- {
- $class="Heanup\App\\".$section."\Config\Route";
- return $class::getData();
- }
- }
|