Completed
Push — master ( 88e368...e2f64d )
by Maxime
02:26
created
Distilleries/Expendable/Http/Controllers/Backend/PermissionController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     public function getIndex()
28 28
     {
29
-        return redirect()->to(action('\\' . get_class($this) . '@getEdit'));
29
+        return redirect()->to(action('\\'.get_class($this).'@getEdit'));
30 30
     }
31 31
 
32 32
     // ------------------------------------------------------------------------------------------------
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         }
59 59
 
60 60
 
61
-        return redirect()->to(action('\\' . get_class($this) . '@getIndex'));
61
+        return redirect()->to(action('\\'.get_class($this).'@getIndex'));
62 62
 
63 63
     }
64 64
 }
65 65
\ No newline at end of file
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Http/Controllers/Backend/LanguageController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 
19 19
     public function getChangeLang($locale = null)
20 20
     {
21
-        session()->put('language',$locale);
21
+        session()->put('language', $locale);
22 22
         app()->setLocale($locale);
23 23
         return redirect()->back();
24 24
     }
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Http/Controllers/Backend/LoginController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     {
31 31
         parent::__construct($layoutManager);
32 32
 
33
-        $this->auth      = $auth;
33
+        $this->auth = $auth;
34 34
 
35 35
     }
36 36
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     public function getLoginRedirect()
42 42
     {
43
-        return redirect()->action('\\' . self::class . '@getIndex');
43
+        return redirect()->action('\\'.self::class.'@getIndex');
44 44
     }
45 45
 
46 46
     public function getIndex()
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
         }
204 204
 
205 205
         $response = $this->broker()->reset(
206
-            $this->credentials($request), function ($user, $password) {
206
+            $this->credentials($request), function($user, $password) {
207 207
             $this->resetPassword($user, $password);
208 208
         });
209 209
 
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
         // the application's home authenticated view. If there is an error we can
212 212
         // redirect them back to where they came from with their error message.
213 213
         return $response == Password::PASSWORD_RESET
214
-            ? redirect()->to(action('\\' . get_class($this) . '@getIndex'))
214
+            ? redirect()->to(action('\\'.get_class($this).'@getIndex'))
215 215
             : redirect()->back()->with('error', trans($response));
216 216
 
217 217
     }
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Http/Controllers/Backend/UserController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
 
56
-    public function postUnLock(Request $request){
56
+    public function postUnLock(Request $request) {
57 57
 
58 58
         $model = $this->model->findOrFail($request->get('id'));
59 59
         $model->nb_of_try = 0;
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     }
64 64
 
65 65
 
66
-    public function postLock(Request $request){
66
+    public function postLock(Request $request) {
67 67
 
68 68
         $model = $this->model->findOrFail($request->get('id'));
69 69
         $model->nb_of_try = config('expendable.auth.nb_of_try');
Please login to merge, or discard this patch.
Distilleries/Expendable/Http/Controllers/Backend/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.
Distilleries/Expendable/Http/Controllers/Backend/Base/ErrorController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 
19 19
 
20 20
         $this->layoutManager->add([
21
-            'class_layout'=>$class . '-full-page',
21
+            'class_layout'=>$class.'-full-page',
22 22
             'content'=>$content,
23 23
         ]);
24 24
 
Please login to merge, or discard this patch.
src/config/config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
     'login_uri'           => 'admin/login',
5 5
     'logout_action'       => 'Distilleries\Expendable\Http\Controllers\Backend\LoginController@getLogout',
6 6
     'admin_base_uri'      => 'admin',
7
-    'config_file_assets'  => base_path() . '/package.json',
7
+    'config_file_assets'  => base_path().'/package.json',
8 8
     'folder_whitelist'    => [
9 9
         'moximanager'
10 10
     ],
Please login to merge, or discard this patch.
Distilleries/Expendable/Http/Controllers/Backend/ComponentController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     public function getIndex()
30 30
     {
31
-        return redirect()->to(action('\\' . get_class($this) . '@getEdit'));
31
+        return redirect()->to(action('\\'.get_class($this).'@getEdit'));
32 32
     }
33 33
 
34 34
 
@@ -70,9 +70,9 @@  discard block
 block discarded – undo
70 70
         }
71 71
 
72 72
         $libelle            = $request->get('libelle');
73
-        $libelle_form       = $libelle . 'Form';
74
-        $libelle_datatable  = $libelle . 'Datatable';
75
-        $libelle_controller = $libelle . 'Controller';
73
+        $libelle_form       = $libelle.'Form';
74
+        $libelle_datatable  = $libelle.'Datatable';
75
+        $libelle_controller = $libelle.'Controller';
76 76
         $model              = $request->get('models');
77 77
         $states             = $request->get('state');
78 78
 
@@ -82,14 +82,14 @@  discard block
 block discarded – undo
82 82
             {
83 83
                 $this->artisan->call('datatable:make', [
84 84
                     '--fields' => $request->get('colon_datatable'),
85
-                    'name'     => 'Http/Datatables/' . $libelle_datatable
85
+                    'name'     => 'Http/Datatables/'.$libelle_datatable
86 86
                 ]);
87 87
             } else if (strpos($state, 'FormStateContract') !== false)
88 88
             {
89 89
 
90 90
                 $this->artisan->call('make:form', [
91 91
                     '--fields' => $request->get('fields_form'),
92
-                    'name'     => 'Http/Forms/' . $libelle_form
92
+                    'name'     => 'Http/Forms/'.$libelle_form
93 93
                 ]);
94 94
             }
95 95
         }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             '--model'     => $model,
100 100
             '--datatable' => $libelle_datatable,
101 101
             '--form'      => $libelle_form,
102
-            'name'        => 'Http/Controllers/Backend/' . $libelle_controller
102
+            'name'        => 'Http/Controllers/Backend/'.$libelle_controller
103 103
         ]);
104 104
 
105 105
         return redirect()->back()->with(Message::MESSAGE, [trans('expendable::success.generated')]);
Please login to merge, or discard this patch.