Test Failed
Push — master ( dc4278...fe2610 )
by Julien
11:23
created
src/TournamentsServiceProvider.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,20 +16,20 @@
 block discarded – undo
16 16
      */
17 17
     public function boot(Router $router)
18 18
     {
19
-        $viewPath = __DIR__.'/../resources/views';
19
+        $viewPath = __DIR__ . '/../resources/views';
20 20
         $this->loadViewsFrom($viewPath, 'kendo-tournaments');
21 21
 //        $this->publishes([ $viewPath => base_path('resources/views/vendor/kendo-tournaments'),], 'kendo-tournaments');
22 22
 
23
-        $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
24
-        $this->loadTranslationsFrom(__DIR__.'/../translations', 'kendo-tournaments');
23
+        $this->loadMigrationsFrom(__DIR__ . '/../database/migrations');
24
+        $this->loadTranslationsFrom(__DIR__ . '/../translations', 'kendo-tournaments');
25 25
 
26 26
 //        $this->publishes([__DIR__ . '/views' => base_path('resources/views/vendor/kendo-tournaments')]);
27
-        $this->publishes([__DIR__.'/../database/migrations' => $this->app->databasePath().'/migrations'], 'migrations');
28
-        $this->publishes([__DIR__.'/../database/seeds' => $this->app->databasePath().'/seeds'], 'seeds');
29
-        $this->publishes([__DIR__.'/../database/factories' => $this->app->databasePath().'/factories'], 'seeds');
30
-        $this->publishes([__DIR__.'/../resources/assets' => public_path('vendor/kendo-tournaments')], 'assets');
27
+        $this->publishes([__DIR__ . '/../database/migrations' => $this->app->databasePath() . '/migrations'], 'migrations');
28
+        $this->publishes([__DIR__ . '/../database/seeds' => $this->app->databasePath() . '/seeds'], 'seeds');
29
+        $this->publishes([__DIR__ . '/../database/factories' => $this->app->databasePath() . '/factories'], 'seeds');
30
+        $this->publishes([__DIR__ . '/../resources/assets' => public_path('vendor/kendo-tournaments')], 'assets');
31 31
 
32
-        $router->group(['prefix' => 'kendo-tournaments', 'middleware' => ['web']], function ($router) {
32
+        $router->group(['prefix' => 'kendo-tournaments', 'middleware' => ['web']], function($router) {
33 33
             $router->get('/', 'Xoco70\KendoTournaments\TreeController@index')->name('tree.index');
34 34
             $router->post('/championships/{championship}/trees', 'Xoco70\KendoTournaments\TreeController@store')->name('tree.index');
35 35
         });
Please login to merge, or discard this patch.