Completed
Push — master ( 80c42a...ce68c4 )
by Cristian
06:48
created
src/BaseServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,13 +66,13 @@  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) {
69
+        $router->group(['namespace' => 'Backpack\Base\app\Http\Controllers'], function($router) {
70 70
             Route::group(
71 71
                 [
72 72
                     'middleware' => 'web',
73 73
                     'prefix' => config('backpack.base.route_prefix')
74 74
                 ],
75
-                function () {
75
+                function() {
76 76
                     // if not otherwise configured, setup the auth routes
77 77
                     if (config('backpack.base.setup_auth_routes')) {
78 78
                         Route::auth();
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     public function register()
97 97
     {
98 98
         // register the current package
99
-        $this->app->bind('base', function ($app) {
99
+        $this->app->bind('base', function($app) {
100 100
             return new Base($app);
101 101
         });
102 102
 
Please login to merge, or discard this patch.