File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ class PermissionServiceProvider extends ServiceProvider
12
12
public function boot (PermissionRegistrar $ permissionLoader )
13
13
{
14
14
$ this ->publishes ([
15
- __DIR__ . '/../config/permission.php ' => $ this ->app ->configPath ().'/permission.php ' ,
15
+ __DIR__ . '/../config/permission.php ' => $ this ->app ->configPath ().'/permission.php ' ,
16
16
], 'config ' );
17
17
18
18
if (! class_exists ('CreatePermissionTables ' )) {
19
19
$ timestamp = date ('Y_m_d_His ' , time ());
20
20
21
21
$ this ->publishes ([
22
- __DIR__ . '/../database/migrations/create_permission_tables.php.stub ' => $ this ->app ->databasePath ()."/migrations/ {$ timestamp }_create_permission_tables.php " ,
22
+ __DIR__ . '/../database/migrations/create_permission_tables.php.stub ' => $ this ->app ->databasePath ()."/migrations/ {$ timestamp }_create_permission_tables.php " ,
23
23
], 'migrations ' );
24
24
}
25
25
@@ -31,7 +31,7 @@ public function boot(PermissionRegistrar $permissionLoader)
31
31
public function register ()
32
32
{
33
33
$ this ->mergeConfigFrom (
34
- __DIR__ . '/../config/permission.php ' ,
34
+ __DIR__ . '/../config/permission.php ' ,
35
35
'permission '
36
36
);
37
37
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ protected function setUpDatabase($app)
104
104
$ table ->string ('email ' );
105
105
});
106
106
107
- include_once __DIR__ . '/../database/migrations/create_permission_tables.php.stub ' ;
107
+ include_once __DIR__ . '/../database/migrations/create_permission_tables.php.stub ' ;
108
108
109
109
(new \CreatePermissionTables ())->up ();
110
110
You can’t perform that action at this time.
0 commit comments