mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 03:50:56 +08:00
17 lines
280 B
PHP
17 lines
280 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
class Router extends Provider
|
|
{
|
|
|
|
protected $serviceName = 'router';
|
|
|
|
public function register()
|
|
{
|
|
$this->di->setShared($this->serviceName, function () {
|
|
return require config_path('routes.php');
|
|
});
|
|
}
|
|
|
|
} |