firefly-iii/app/Providers/RouteServiceProvider.php

56 lines
1.2 KiB
PHP
Raw Normal View History

<?php
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
namespace FireflyIII\Providers;
2015-02-05 21:39:52 -06:00
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
2016-01-15 16:12:52 -06:00
use Illuminate\Routing\Router;
2015-02-06 12:33:31 -06:00
/**
* Class RouteServiceProvider
*
* @package FireflyIII\Providers
*/
2015-02-06 12:33:31 -06:00
class RouteServiceProvider extends ServiceProvider
{
/**
* This namespace is applied to the controller routes in your routes file.
*
* In addition, it is set as the URL generator's root namespace.
*
* @var string
*/
protected $namespace = 'FireflyIII\Http\Controllers';
/**
* Define your route model bindings, pattern filters, etc.
*
2016-01-15 16:12:52 -06:00
* @param \Illuminate\Routing\Router $router
*
2015-02-06 12:33:31 -06:00
* @return void
*/
public function boot(Router $router)
{
//
2015-02-06 12:33:31 -06:00
parent::boot($router);
2015-02-06 12:33:31 -06:00
}
2015-02-05 21:39:52 -06:00
2015-02-06 12:33:31 -06:00
/**
* Define the routes for the application.
*
2016-01-15 16:12:52 -06:00
* @param \Illuminate\Routing\Router $router
*
2015-02-06 12:33:31 -06:00
* @return void
*/
public function map(Router $router)
{
2016-01-15 16:12:52 -06:00
$router->group(
['namespace' => $this->namespace], function ($router) {
2016-01-29 00:08:17 -06:00
/** @noinspection PhpIncludeInspection */
2015-02-06 12:33:31 -06:00
require app_path('Http/routes.php');
2016-01-15 16:12:52 -06:00
}
);
2015-02-06 12:33:31 -06:00
}
2015-02-05 21:39:52 -06:00
}