Skip to content

Commit 2bae899

Browse files
committedJan 15, 2020
Running “make fix” (code style)
1 parent c155649 commit 2bae899

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎src/LaravelTimezoneServiceProvider.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function boot()
2828
// Allow migrations publish
2929
if (! class_exists('AddTimezoneColumnToUsersTable')) {
3030
$this->publishes([
31-
__DIR__.'/database/migrations/add_timezone_column_to_users_table.php.stub' => database_path('/migrations/' . date('Y_m_d_His') . '_add_timezone_column_to_users_table.php'),
31+
__DIR__ . '/database/migrations/add_timezone_column_to_users_table.php.stub' => database_path('/migrations/' . date('Y_m_d_His') . '_add_timezone_column_to_users_table.php'),
3232
], 'migrations');
3333
}
3434

@@ -40,7 +40,7 @@ public function boot()
4040

4141
// Allow config publish
4242
$this->publishes([
43-
__DIR__.'/config/timezone.php' => config_path('timezone.php'),
43+
__DIR__ . '/config/timezone.php' => config_path('timezone.php'),
4444
], 'config');
4545

4646
// Register a blade directive to show user date/time in their timezone
@@ -73,5 +73,4 @@ public function register()
7373
{
7474
$this->app->bind('timezone', Timezone::class);
7575
}
76-
7776
}

0 commit comments

Comments
 (0)