@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | protected function registerRouter() |
15 | 15 | { |
16 | - $this->app->singleton('router',function ($app) { |
|
16 | + $this->app->singleton('router', function($app) { |
|
17 | 17 | return new Router($app['events'], $app); |
18 | 18 | }); |
19 | 19 | } |
@@ -28,7 +28,7 @@ discard block |
||
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 |
||
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 |
||
82 | 82 | { |
83 | 83 | $this->artisan->call('datatable:make', [ |
84 | 84 | '--fields' => $request->get('colon_datatable'), |
85 | - 'name' => 'Datatables/' . $libelle_datatable |
|
85 | + 'name' => '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' => 'Forms/' . $libelle_form |
|
92 | + 'name' => 'Forms/'.$libelle_form |
|
93 | 93 | ]); |
94 | 94 | } |
95 | 95 | } |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | '--model' => $model, |
100 | 100 | '--datatable' => $libelle_datatable, |
101 | 101 | '--form' => $libelle_form, |
102 | - 'name' => 'Http/Controllers/Admin/' . $libelle_controller |
|
102 | + 'name' => 'Http/Controllers/Admin/'.$libelle_controller |
|
103 | 103 | ]); |
104 | 104 | |
105 | 105 | return redirect()->back()->with(Message::MESSAGE, [trans('expendable::success.generated')]); |
@@ -30,22 +30,22 @@ discard block |
||
30 | 30 | public function boot() |
31 | 31 | { |
32 | 32 | |
33 | - $this->loadViewsFrom(__DIR__ . '/../../views', 'expendable'); |
|
34 | - $this->loadTranslationsFrom(__DIR__ . '/../../lang', 'expendable'); |
|
35 | - $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations/'); |
|
33 | + $this->loadViewsFrom(__DIR__.'/../../views', 'expendable'); |
|
34 | + $this->loadTranslationsFrom(__DIR__.'/../../lang', 'expendable'); |
|
35 | + $this->loadMigrationsFrom(__DIR__.'/../../database/migrations/'); |
|
36 | 36 | |
37 | 37 | |
38 | 38 | $this->publishes([ |
39 | - __DIR__ . '/../../config/config.php' => config_path('expendable.php'), |
|
40 | - __DIR__ . '/../../database/seeds/' => base_path('/database/seeds'), |
|
39 | + __DIR__.'/../../config/config.php' => config_path('expendable.php'), |
|
40 | + __DIR__.'/../../database/seeds/' => base_path('/database/seeds'), |
|
41 | 41 | ]); |
42 | 42 | |
43 | 43 | |
44 | 44 | $this->publishes([ |
45 | - __DIR__ . '/../../views' => base_path('resources/views/vendor/expendable'), |
|
45 | + __DIR__.'/../../views' => base_path('resources/views/vendor/expendable'), |
|
46 | 46 | ], 'views'); |
47 | 47 | $this->mergeConfigFrom( |
48 | - __DIR__ . '/../../config/config.php', 'expendable' |
|
48 | + __DIR__.'/../../config/config.php', 'expendable' |
|
49 | 49 | ); |
50 | 50 | |
51 | 51 | $autoLoaderListener = new \Distilleries\Expendable\Register\ListenerAutoLoader(config('expendable.listener')); |
@@ -128,13 +128,13 @@ discard block |
||
128 | 128 | protected function registerCommands() |
129 | 129 | { |
130 | 130 | $file = app('files'); |
131 | - $files = $file->allFiles(__DIR__ . '/Console/'); |
|
131 | + $files = $file->allFiles(__DIR__.'/Console/'); |
|
132 | 132 | |
133 | 133 | foreach ($files as $file) |
134 | 134 | { |
135 | 135 | if (strpos($file->getPathName(), 'Lib') === false) |
136 | 136 | { |
137 | - $this->commands('Distilleries\Expendable\Console\\' . preg_replace('/\.php/i', '', $file->getFilename())); |
|
137 | + $this->commands('Distilleries\Expendable\Console\\'.preg_replace('/\.php/i', '', $file->getFilename())); |
|
138 | 138 | } |
139 | 139 | } |
140 | 140 | } |
@@ -18,7 +18,7 @@ |
||
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 | } |
@@ -30,7 +30,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | } |