Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
8 | abstract class RouteServiceProvider extends BaseServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Read the routes from the "routes.php" file of this Service |
||
12 | * |
||
13 | * @param \Illuminate\Routing\Router $router |
||
14 | */ |
||
15 | abstract public function map(Router $router); |
||
16 | |||
17 | 2 | public function loadRoutesFile($router, $namespace, $path) : void |
|
26 |