@@ -24,15 +24,15 @@ |
||
24 | 24 | public function boot() |
25 | 25 | { |
26 | 26 | $this->publishes([ |
27 | - \dirname(__DIR__) . '/config/follow.php' => config_path('follow.php'), |
|
27 | + \dirname(__DIR__).'/config/follow.php' => config_path('follow.php'), |
|
28 | 28 | ], 'config'); |
29 | 29 | |
30 | 30 | $this->publishes([ |
31 | - \dirname(__DIR__) . '/migrations/' => database_path('migrations'), |
|
31 | + \dirname(__DIR__).'/migrations/' => database_path('migrations'), |
|
32 | 32 | ], 'migrations'); |
33 | 33 | |
34 | 34 | if ($this->app->runningInConsole()) { |
35 | - $this->loadMigrationsFrom(\dirname(__DIR__) . '/migrations/'); |
|
35 | + $this->loadMigrationsFrom(\dirname(__DIR__).'/migrations/'); |
|
36 | 36 | } |
37 | 37 | } |
38 | 38 | } |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return [ |
4 | - /* |
|
4 | + /* |
|
5 | 5 | * Table name for followers records. |
6 | 6 | */ |
7 | - 'relation_table' => 'user_follower', |
|
7 | + 'relation_table' => 'user_follower', |
|
8 | 8 | ]; |