Skip to content

Commit a0cf064

Browse files
Update service provider
1 parent 481c978 commit a0cf064

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

src/FollowersServiceProvider.php

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ class FollowersServiceProvider extends ServiceProvider
99
];
1010

1111
/**
12-
* Boot the service provider.
13-
*
14-
* @return void
12+
* @inheritdoc
1513
*/
1614
public function boot()
1715
{
@@ -20,13 +18,11 @@ public function boot()
2018
}
2119

2220
/**
23-
* Register the service provider.
24-
*
25-
* @return void
21+
* @inheritdoc
2622
*/
2723
public function register()
2824
{
29-
// $this->app->singleton(Lecturize::class);
25+
//
3026
}
3127

3228
/**
@@ -38,7 +34,7 @@ public function provides()
3834
}
3935

4036
/**
41-
* Publish and merge the config file
37+
* Publish and merge the config file.
4238
*
4339
* @return void
4440
*/
@@ -52,14 +48,14 @@ private function handleConfig()
5248
}
5349

5450
/**
55-
* Publish migrations
51+
* Publish migrations.
5652
*
5753
* @return void
5854
*/
5955
private function handleMigrations()
6056
{
61-
foreach ( $this->migrations as $class => $file ) {
62-
if ( ! class_exists($class) ) {
57+
foreach ($this->migrations as $class => $file) {
58+
if (! class_exists($class)) {
6359
$timestamp = date('Y_m_d_His', time());
6460

6561
$this->publishes([

0 commit comments

Comments
 (0)