@@ -8,7 +8,7 @@ class RMAServiceProvider extends ServiceProvider
88{
99 public function register ()
1010 {
11- $ this ->mergeConfigFrom (__DIR__ . '/../config/rapidez/rma.php ' , 'rapidez.rma ' );
11+ $ this ->mergeConfigFrom (__DIR__ . '/../config/rapidez/rma.php ' , 'rapidez.rma ' );
1212 }
1313
1414 public function boot ()
@@ -19,29 +19,29 @@ public function boot()
1919 ->bootPublishables ();
2020 }
2121
22- public function bootRoutes () : self
22+ public function bootRoutes (): self
2323 {
24- $ this ->loadRoutesFrom (__DIR__ . '/../routes/api.php ' );
25- $ this ->loadRoutesFrom (__DIR__ . '/../routes/web.php ' );
24+ $ this ->loadRoutesFrom (__DIR__ . '/../routes/api.php ' );
25+ $ this ->loadRoutesFrom (__DIR__ . '/../routes/web.php ' );
2626
2727 return $ this ;
2828 }
2929
30- public function bootViews () : self
30+ public function bootViews (): self
3131 {
32- $ this ->loadViewsFrom (__DIR__ . '/../resources/views ' , 'rapidez-rma ' );
32+ $ this ->loadViewsFrom (__DIR__ . '/../resources/views ' , 'rapidez-rma ' );
3333
3434 return $ this ;
3535 }
3636
37- public function bootPublishables () : self
37+ public function bootPublishables (): self
3838 {
3939 $ this ->publishes ([
40- __DIR__ . '/../resources/views ' => resource_path ('views/vendor/rapidez-rma ' ),
40+ __DIR__ . '/../resources/views ' => resource_path ('views/vendor/rapidez-rma ' ),
4141 ], 'rapidez-rma-views ' );
4242
4343 $ this ->publishes ([
44- __DIR__ . '/../config/rapidez/rma.php ' => config_path ('rapidez/rma.php ' ),
44+ __DIR__ . '/../config/rapidez/rma.php ' => config_path ('rapidez/rma.php ' ),
4545 ], 'rapidez-rma-config ' );
4646
4747 return $ this ;
0 commit comments