Skip to content

Commit b3f3d70

Browse files
authored
Apply fixes from StyleCI (#260)
1 parent 9664507 commit b3f3d70

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/PermissionServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ class PermissionServiceProvider extends ServiceProvider
1212
public function boot(PermissionRegistrar $permissionLoader)
1313
{
1414
$this->publishes([
15-
__DIR__ . '/../config/permission.php' => $this->app->configPath().'/permission.php',
15+
__DIR__.'/../config/permission.php' => $this->app->configPath().'/permission.php',
1616
], 'config');
1717

1818
if (! class_exists('CreatePermissionTables')) {
1919
$timestamp = date('Y_m_d_His', time());
2020

2121
$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",
2323
], 'migrations');
2424
}
2525

@@ -31,7 +31,7 @@ public function boot(PermissionRegistrar $permissionLoader)
3131
public function register()
3232
{
3333
$this->mergeConfigFrom(
34-
__DIR__ . '/../config/permission.php',
34+
__DIR__.'/../config/permission.php',
3535
'permission'
3636
);
3737

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ protected function setUpDatabase($app)
104104
$table->string('email');
105105
});
106106

107-
include_once __DIR__ . '/../database/migrations/create_permission_tables.php.stub';
107+
include_once __DIR__.'/../database/migrations/create_permission_tables.php.stub';
108108

109109
(new \CreatePermissionTables())->up();
110110

0 commit comments

Comments
 (0)