Completed
Push — master ( de6ae6...84015a )
by Maxime
125:35 queued 121:06
created
src/Distilleries/Expendable/Http/Controllers/Admin/Base/BaseController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         $this->layoutManager->initStaticPart(function($layoutManager)
50 50
         {
51 51
 
52
-            $menu_top  = $layoutManager->getView()->make('expendable::admin.menu.top',[
52
+            $menu_top  = $layoutManager->getView()->make('expendable::admin.menu.top', [
53 53
                 'languages'=>Language::all()
54 54
             ]);
55 55
             $menu_left = $layoutManager->getView()->make('expendable::admin.menu.left');
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Http/Controllers/Admin/LoginController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     {
29 29
         parent::__construct($layoutManager);
30 30
 
31
-        $this->auth      = $auth;
31
+        $this->auth = $auth;
32 32
 
33 33
     }
34 34
 
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 
212 212
         $broker = $this->getBroker();
213 213
 
214
-        $response = \Password::broker($broker)->reset($credentials, function ($user, $password) {
214
+        $response = \Password::broker($broker)->reset($credentials, function($user, $password) {
215 215
             $user->password = bcrypt($password);
216 216
             $user->save();
217 217
 
Please login to merge, or discard this patch.