Renaming folders.

This commit is contained in:
Taylor Otwell
2014-08-18 23:42:49 -05:00
parent 79bcb450dd
commit 3ffbb5d6ba
18 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<?php namespace Providers;
use Illuminate\Routing\FilterServiceProvider as ServiceProvider;
class FilterServiceProvider extends ServiceProvider {
/**
* The filters that should run before all requests.
*
* @var array
*/
protected $before = [
'MaintenanceFilter',
];
/**
* The filters that should run after all requests.
*
* @var array
*/
protected $after = [
//
];
/**
* All available route filters.
*
* @var array
*/
protected $filters = [
'auth' => 'AuthFilter',
'auth.basic' => 'BasicAuthFilter',
'csrf' => 'CsrfFilter',
'guest' => 'GuestFilter',
];
}