@@ -17,7 +17,7 @@ |
||
17 | 17 | */ |
18 | 18 | public function extendValidationRules() |
19 | 19 | { |
20 | - Validator::extend('no_spaces', function ($attr, $value) { |
|
20 | + Validator::extend('no_spaces', function($attr, $value) { |
|
21 | 21 | return preg_match('/^\S*$/u', $value); |
22 | 22 | }, ['String should not contain space.']); |
23 | 23 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | $locale = $request->header('Content-Language'); |
39 | 39 | |
40 | 40 | // if the header is missed |
41 | - if(!$locale){ |
|
41 | + if (!$locale) { |
|
42 | 42 | // take the default local language |
43 | 43 | $locale = $this->app->config->get('app.locale'); |
44 | 44 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('failed_jobs', function (Blueprint $table) { |
|
16 | + Schema::create('failed_jobs', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->text('connection'); |
19 | 19 | $table->text('queue'); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | */ |
62 | 62 | public function send($data = []) |
63 | 63 | { |
64 | - if(!$this->fromEmail || !$this->toEmail){ |
|
64 | + if (!$this->fromEmail || !$this->toEmail) { |
|
65 | 65 | throw new EmailIsMissedException(); |
66 | 66 | } |
67 | 67 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | // check if sending emails is enabled and if this is not running a testing environment |
71 | 71 | if (Config::get('mail.enabled')) { |
72 | 72 | |
73 | - Mail::queue('EmailTemplates.' . $this->template, $data, function ($m) { |
|
73 | + Mail::queue('EmailTemplates.' . $this->template, $data, function($m) { |
|
74 | 74 | $m->from($this->fromEmail, $this->fromName); |
75 | 75 | $m->to($this->toEmail, $this->toName) |
76 | 76 | ->subject($this->subject); |
@@ -220,7 +220,7 @@ |
||
220 | 220 | */ |
221 | 221 | 'generator' => [ |
222 | 222 | 'basePath' => env('SRC_PATH'), |
223 | - 'rootNamespace' => env('ROOT_NAMESPACE').'\\', |
|
223 | + 'rootNamespace' => env('ROOT_NAMESPACE') . '\\', |
|
224 | 224 | 'paths' => [ |
225 | 225 | 'models' => 'Entities', |
226 | 226 | 'repositories' => 'Repositories', |
@@ -64,7 +64,7 @@ |
||
64 | 64 | */ |
65 | 65 | public function getContainersPaths() |
66 | 66 | { |
67 | - return File::directories(app_path('Containers'));; |
|
67 | + return File::directories(app_path('Containers')); ; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -24,7 +24,7 @@ |
||
24 | 24 | public function runQueryDebugger($log = true, $terminal = false) |
25 | 25 | { |
26 | 26 | if (Config::get('hello.query_debugger')) { |
27 | - DB::listen(function ($event) use ($terminal, $log) { |
|
27 | + DB::listen(function($event) use ($terminal, $log) { |
|
28 | 28 | $fullQuery = vsprintf(str_replace(['%', '?'], ['%%', '%s'], $event->sql), $event->bindings); |
29 | 29 | |
30 | 30 | $text = $event->connectionName . ' (' . $event->time . '): ' . $fullQuery; |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | public function runEndpointsHashedIdsDecoder() |
30 | 30 | { |
31 | 31 | if (Config::get('hello.hash-id')) { |
32 | - Route::bind('id', function ($id, $route) { |
|
32 | + Route::bind('id', function($id, $route) { |
|
33 | 33 | // skip decoding some endpoints |
34 | 34 | if (!in_array($route->uri(), $this->skippedEndpoints)) { |
35 | 35 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | { |
59 | 59 | // hash the ID only if hash-id enabled in the config |
60 | 60 | if (Config::get('hello.hash-id')) { |
61 | - return $this->encoder(($key) ? : $this->getKey()); |
|
61 | + return $this->encoder(($key) ?: $this->getKey()); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | return $this->getKey(); |
@@ -51,7 +51,7 @@ |
||
51 | 51 | |
52 | 52 | Log::debug(''); |
53 | 53 | Log::debug('REQUEST DATA: '); |
54 | - $data = $request->all()? http_build_query($request->all(), '', ' + ') : 'N/A'; |
|
54 | + $data = $request->all() ? http_build_query($request->all(), '', ' + ') : 'N/A'; |
|
55 | 55 | Log::debug(' ' . $data); |
56 | 56 | |
57 | 57 | Log::debug(''); |