| 1 | <?php namespace Arcanesoft\Backups\Providers; |
||
| 12 | class RouteServiceProvider extends ServiceProvider |
||
| 13 | { |
||
| 14 | /* ----------------------------------------------------------------- |
||
| 15 | | Properties |
||
| 16 | | ----------------------------------------------------------------- |
||
| 17 | */ |
||
| 18 | |||
| 19 | /** |
||
| 20 | * The admin controller namespace for the application. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $adminNamespace = 'Arcanesoft\\Backups\\Http\\Controllers\\Admin'; |
||
| 25 | |||
| 26 | /* ----------------------------------------------------------------- |
||
| 27 | | Main Methods |
||
| 28 | | ----------------------------------------------------------------- |
||
| 29 | */ |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Register the route bindings. |
||
| 33 | */ |
||
| 34 | 4 | protected function registerRouteBindings() |
|
| 38 | |||
| 39 | /** |
||
| 40 | * Define the routes for the application. |
||
| 41 | */ |
||
| 42 | public function map() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Define the admin routes for the application. |
||
| 51 | */ |
||
| 52 | 4 | private function mapAdminRoutes() |
|
| 60 | } |
||
| 61 |