File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 3030 }
3131 ],
3232 "require" : {
33- "php" : " >=7.1 " ,
33+ "php" : " >=7.2 " ,
3434 "illuminate/auth" : " ^6.0" ,
3535 "illuminate/container" : " ^6.0" ,
3636 "illuminate/contracts" : " ^6.0" ,
Original file line number Diff line number Diff line change 22
33namespace Maklad \Permission ;
44
5- use Illuminate \Contracts \Auth \Access \Gate ;
65use Illuminate \Support \ServiceProvider ;
76use Illuminate \View \Compilers \BladeCompiler ;
87use Maklad \Permission \Contracts \PermissionInterface as Permission ;
98use Maklad \Permission \Contracts \RoleInterface as Role ;
109use Maklad \Permission \Directives \PermissionDirectives ;
1110use Illuminate \Support \Facades \DB ;
12-
11+ use Illuminate \ Support \ Facades \ Log ;
1312/**
1413 * Class PermissionServiceProvider
1514 * @package Maklad\Permission
@@ -46,7 +45,7 @@ public function boot()
4645 DB ::connection ()->getPdo ();
4746 app (PermissionRegistrar::class)->registerPermissions ();
4847 } catch (\Exception $ e ) {
49- \ Log::error ("Could not connect to the database. Please check your configuration. error: " . $ e );
48+ Log::error ("Could not connect to the database. Please check your configuration. error: " . $ e );
5049 }
5150 }
5251
You can’t perform that action at this time.
0 commit comments