Updated providers after upgrade to Laravel 5.2

This commit is contained in:
James Cole
2016-01-08 16:00:07 +01:00
parent 9b03e6b124
commit 7e4b9af315
8 changed files with 52 additions and 204 deletions

View File

@@ -0,0 +1,31 @@
<?php
namespace FireflyIII\Providers;
use Illuminate\Contracts\Auth\Access\Gate as GateContract;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
class AuthServiceProvider extends ServiceProvider
{
/**
* The policy mappings for the application.
*
* @var array
*/
protected $policies = [
'FireflyIII\Model' => 'FireflyIII\Policies\ModelPolicy',
];
/**
* Register any application authentication / authorization services.
*
* @param \Illuminate\Contracts\Auth\Access\Gate $gate
* @return void
*/
public function boot(GateContract $gate)
{
$this->registerPolicies($gate);
//
}
}