We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -10,5 +10,5 @@ |
||
10 | 10 | 'prefix' => config('backpack.base.route_prefix', 'admin'), |
11 | 11 | 'middleware' => ['web', config('backpack.base.middleware_key', 'admin')], |
12 | 12 | 'namespace' => 'App\Http\Controllers\Admin', |
13 | -], function () { // custom admin routes |
|
13 | +], function() { // custom admin routes |
|
14 | 14 | }); // this should be the absolute last line of this file |
@@ -25,9 +25,9 @@ |
||
25 | 25 | </thead> |
26 | 26 | <?php |
27 | 27 | |
28 | -if (! empty($_POST)) { |
|
28 | +if (!empty($_POST)) { |
|
29 | 29 | foreach ($_POST as $key => $value) { |
30 | - if ((! is_string($value) && ! is_numeric($value)) || ! is_string($key)) { |
|
30 | + if ((!is_string($value) && !is_numeric($value)) || !is_string($key)) { |
|
31 | 31 | continue; |
32 | 32 | } |
33 | 33 |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | $sourceFile = $this->sourcePath.$file.'.blade.php'; |
74 | 74 | $copiedFile = $this->destinationPath.$file.'.blade.php'; |
75 | 75 | |
76 | - if (! file_exists($sourceFile)) { |
|
76 | + if (!file_exists($sourceFile)) { |
|
77 | 77 | return $this->error( |
78 | 78 | 'Cannot find source view file at ' |
79 | 79 | .$sourceFile. |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | if ($canCopy) { |
94 | 94 | $path = pathinfo($copiedFile); |
95 | 95 | |
96 | - if (! file_exists($path['dirname'])) { |
|
96 | + if (!file_exists($path['dirname'])) { |
|
97 | 97 | mkdir($path['dirname'], 0755, true); |
98 | 98 | } |
99 | 99 |
@@ -33,15 +33,15 @@ |
||
33 | 33 | { |
34 | 34 | $this->info('Creating a new user'); |
35 | 35 | |
36 | - if (! $name = $this->option('name')) { |
|
36 | + if (!$name = $this->option('name')) { |
|
37 | 37 | $name = $this->ask('Name'); |
38 | 38 | } |
39 | 39 | |
40 | - if (! $email = $this->option('email')) { |
|
40 | + if (!$email = $this->option('email')) { |
|
41 | 41 | $email = $this->ask('Email'); |
42 | 42 | } |
43 | 43 | |
44 | - if (! $password = $this->option('password')) { |
|
44 | + if (!$password = $this->option('password')) { |
|
45 | 45 | $password = $this->secret('Password'); |
46 | 46 | } |
47 | 47 |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | private function runConsoleCommand($command) |
50 | 50 | { |
51 | 51 | $process = new Process($command, null, null, null, 60, null); |
52 | - $process->run(function ($type, $buffer) { |
|
52 | + $process->run(function($type, $buffer) { |
|
53 | 53 | if (Process::ERR === $type) { |
54 | 54 | $this->line($buffer); |
55 | 55 | } else { |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | }); |
59 | 59 | |
60 | 60 | // executes after the command finishes |
61 | - if (! $process->isSuccessful()) { |
|
61 | + if (!$process->isSuccessful()) { |
|
62 | 62 | throw new ProcessFailedException($process); |
63 | 63 | } |
64 | 64 | } |
@@ -79,7 +79,7 @@ |
||
79 | 79 | { |
80 | 80 | $stub = str_replace('Backpack\CRUD\app\Models;', $this->laravel->getNamespace().'Models;', $stub); |
81 | 81 | |
82 | - if (! $this->files->exists($this->laravel['path'].'/User.php') && $this->files->exists($this->laravel['path'].'/Models/User.php')) { |
|
82 | + if (!$this->files->exists($this->laravel['path'].'/User.php') && $this->files->exists($this->laravel['path'].'/Models/User.php')) { |
|
83 | 83 | $stub = str_replace($this->laravel->getNamespace().'User', $this->laravel->getNamespace().'Models\User', $stub); |
84 | 84 | } |
85 | 85 |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | |
67 | 67 | $process = new Process($command, null, null, null, 300, null); |
68 | 68 | |
69 | - $process->run(function ($type, $buffer) { |
|
69 | + $process->run(function($type, $buffer) { |
|
70 | 70 | if (Process::ERR === $type) { |
71 | 71 | $this->line($buffer); |
72 | 72 | } else { |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | }); |
76 | 76 | |
77 | 77 | // executes after the command finishes |
78 | - if (! $process->isSuccessful()) { |
|
78 | + if (!$process->isSuccessful()) { |
|
79 | 79 | throw new ProcessFailedException($process); |
80 | 80 | } |
81 | 81 | |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | |
95 | 95 | // otherwise, in case the last line HAS been modified |
96 | 96 | // return the last line that has an ending in it |
97 | - $possible_end_lines = array_filter($file_lines, function ($k) { |
|
97 | + $possible_end_lines = array_filter($file_lines, function($k) { |
|
98 | 98 | return strpos($k, '});') === 0; |
99 | 99 | }); |
100 | 100 |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | */ |
25 | 25 | public function getAttributeValue($key) |
26 | 26 | { |
27 | - if (! $this->isTranslatableAttribute($key)) { |
|
27 | + if (!$this->isTranslatableAttribute($key)) { |
|
28 | 28 | return parent::getAttributeValue($key); |
29 | 29 | } |
30 | 30 | |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | */ |
73 | 73 | public function update(array $attributes = [], array $options = []) |
74 | 74 | { |
75 | - if (! $this->exists) { |
|
75 | + if (!$this->exists) { |
|
76 | 76 | return false; |
77 | 77 | } |
78 | 78 |
@@ -48,7 +48,7 @@ |
||
48 | 48 | $separator = $config['separator']; |
49 | 49 | $attribute = $attribute.'->'.$this->getLocale(); |
50 | 50 | |
51 | - return $query->where(function (Builder $q) use ($attribute, $slug, $separator) { |
|
51 | + return $query->where(function(Builder $q) use ($attribute, $slug, $separator) { |
|
52 | 52 | $q->where($attribute, '=', $slug) |
53 | 53 | ->orWhere($attribute, 'LIKE', $slug.$separator.'%') |
54 | 54 | // Fixes issues with Json data types in MySQL where data is sourrounded by " |