Completed
Pull Request — master (#33)
by
unknown
02:18
created
src/BaseServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
         // register the 'admin' middleware
67 67
         $router->middleware('admin', app\Http\Middleware\Admin::class);
68 68
 
69
-        $router->group(['namespace' => 'Backpack\Base\app\Http\Controllers'], function ($router) {
70
-            Route::group(['middleware' => 'web', 'prefix' => config('backpack.base.route_prefix')], function () {
69
+        $router->group(['namespace' => 'Backpack\Base\app\Http\Controllers'], function($router) {
70
+            Route::group(['middleware' => 'web', 'prefix' => config('backpack.base.route_prefix')], function() {
71 71
 
72 72
                 // if not otherwise configured, setup the auth routes
73 73
                 if (config('backpack.base.setup_auth_routes')) {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     public function register()
92 92
     {
93 93
         // register the current package
94
-        $this->app->bind('base', function ($app) {
94
+        $this->app->bind('base', function($app) {
95 95
             return new Base($app);
96 96
         });
97 97
 
Please login to merge, or discard this patch.