Completed
Pull Request — master (#164)
by Cristian
02:16
created
src/routes/backpack/base.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     'middleware' => 'web',
17 17
     'prefix'     => config('backpack.base.route_prefix'),
18 18
 ],
19
-function () {
19
+function() {
20 20
     // if not otherwise configured, setup the auth routes
21 21
     if (config('backpack.base.setup_auth_routes')) {
22 22
         Route::auth();
Please login to merge, or discard this patch.
src/BaseServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     public function register()
76 76
     {
77 77
         // register the current package
78
-        $this->app->bind('base', function ($app) {
78
+        $this->app->bind('base', function($app) {
79 79
             return new Base($app);
80 80
         });
81 81
 
Please login to merge, or discard this patch.