We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * Appends the configured backpack prefix and returns |
6 | 6 | * the URL using the standard Laravel helpers. |
7 | 7 | * |
8 | - * @param $path |
|
8 | + * @param string $path |
|
9 | 9 | * |
10 | 10 | * @return string |
11 | 11 | */ |
@@ -156,6 +156,7 @@ discard block |
||
156 | 156 | * If that view doesn't exist, it will load the one from the original theme. |
157 | 157 | * |
158 | 158 | * @param string (see config/backpack/base.php) |
159 | + * @param string $view |
|
159 | 160 | * |
160 | 161 | * @return string |
161 | 162 | */ |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (! function_exists('backpack_url')) { |
|
3 | +if (!function_exists('backpack_url')) { |
|
4 | 4 | /** |
5 | 5 | * Appends the configured backpack prefix and returns |
6 | 6 | * the URL using the standard Laravel helpers. |
@@ -11,13 +11,13 @@ discard block |
||
11 | 11 | */ |
12 | 12 | function backpack_url($path = null, $parameters = [], $secure = null) |
13 | 13 | { |
14 | - $path = ! $path || (substr($path, 0, 1) == '/') ? $path : '/'.$path; |
|
14 | + $path = !$path || (substr($path, 0, 1) == '/') ? $path : '/'.$path; |
|
15 | 15 | |
16 | 16 | return url(config('backpack.base.route_prefix', 'admin').$path, $parameters = [], $secure = null); |
17 | 17 | } |
18 | 18 | } |
19 | 19 | |
20 | -if (! function_exists('backpack_authentication_column')) { |
|
20 | +if (!function_exists('backpack_authentication_column')) { |
|
21 | 21 | /** |
22 | 22 | * Return the username column name. |
23 | 23 | * The Laravel default (and Backpack default) is 'email'. |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | } |
31 | 31 | } |
32 | 32 | |
33 | -if (! function_exists('backpack_users_have_email')) { |
|
33 | +if (!function_exists('backpack_users_have_email')) { |
|
34 | 34 | /** |
35 | 35 | * Check if the email column is present on the user table. |
36 | 36 | * |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | } |
46 | 46 | } |
47 | 47 | |
48 | -if (! function_exists('backpack_avatar_url')) { |
|
48 | +if (!function_exists('backpack_avatar_url')) { |
|
49 | 49 | /** |
50 | 50 | * Returns the avatar URL of a user. |
51 | 51 | * |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | } |
79 | 79 | } |
80 | 80 | |
81 | -if (! function_exists('backpack_middleware')) { |
|
81 | +if (!function_exists('backpack_middleware')) { |
|
82 | 82 | /** |
83 | 83 | * Return the key of the middleware used across Backpack. |
84 | 84 | * That middleware checks if the visitor is an admin. |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | } |
94 | 94 | } |
95 | 95 | |
96 | -if (! function_exists('backpack_guard_name')) { |
|
96 | +if (!function_exists('backpack_guard_name')) { |
|
97 | 97 | /* |
98 | 98 | * Returns the name of the guard defined |
99 | 99 | * by the application config |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | } |
105 | 105 | } |
106 | 106 | |
107 | -if (! function_exists('backpack_auth')) { |
|
107 | +if (!function_exists('backpack_auth')) { |
|
108 | 108 | /* |
109 | 109 | * Returns the user instance if it exists |
110 | 110 | * of the currently authenticated admin |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | } |
117 | 117 | } |
118 | 118 | |
119 | -if (! function_exists('backpack_user')) { |
|
119 | +if (!function_exists('backpack_user')) { |
|
120 | 120 | /* |
121 | 121 | * Returns back a user instance without |
122 | 122 | * the admin guard, however allows you |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | } |
129 | 129 | } |
130 | 130 | |
131 | -if (! function_exists('mb_ucfirst')) { |
|
131 | +if (!function_exists('mb_ucfirst')) { |
|
132 | 132 | /** |
133 | 133 | * Capitalize the first letter of a string, |
134 | 134 | * even if that string is multi-byte (non-latin alphabet). |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | } |
151 | 151 | } |
152 | 152 | |
153 | -if (! function_exists('backpack_view')) { |
|
153 | +if (!function_exists('backpack_view')) { |
|
154 | 154 | /** |
155 | 155 | * Returns a new displayable view based on the configured backpack view namespace. |
156 | 156 | * If that view doesn't exist, it will load the one from the original theme. |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | |
170 | 170 | $returnView = $theme.$view; |
171 | 171 | |
172 | - if (! view()->exists($returnView)) { |
|
172 | + if (!view()->exists($returnView)) { |
|
173 | 173 | $returnView = $originalTheme.$view; |
174 | 174 | } |
175 | 175 | |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | } |
178 | 178 | } |
179 | 179 | |
180 | -if (! function_exists('square_brackets_to_dots')) { |
|
180 | +if (!function_exists('square_brackets_to_dots')) { |
|
181 | 181 | /** |
182 | 182 | * Turns a string from bracket-type array to dot-notation array. |
183 | 183 | * Ex: array[0][property] turns into array.0.property. |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | } |
195 | 195 | } |
196 | 196 | |
197 | -if (! function_exists('is_countable')) { |
|
197 | +if (!function_exists('is_countable')) { |
|
198 | 198 | /** |
199 | 199 | * We need this because is_countable was only introduced in PHP 7.3, |
200 | 200 | * and in PHP 7.2 you should check if count() argument is really countable. |
@@ -16,7 +16,7 @@ |
||
16 | 16 | 'middleware' => 'web', |
17 | 17 | 'prefix' => config('backpack.base.route_prefix'), |
18 | 18 | ], |
19 | -function () { |
|
19 | +function() { |
|
20 | 20 | // if not otherwise configured, setup the auth routes |
21 | 21 | if (config('backpack.base.setup_auth_routes')) { |
22 | 22 | // Authentication Routes... |
@@ -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 |
@@ -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 |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | /** |
34 | 34 | * Execute the console command. |
35 | 35 | * |
36 | - * @return bool|null |
|
36 | + * @return false|null |
|
37 | 37 | */ |
38 | 38 | public function handle() |
39 | 39 | { |
@@ -71,9 +71,8 @@ discard block |
||
71 | 71 | * Replace the User model, if it was moved to App\Models\User. |
72 | 72 | * |
73 | 73 | * @param string $stub |
74 | - * @param string $name |
|
75 | 74 | * |
76 | - * @return $this |
|
75 | + * @return string |
|
77 | 76 | */ |
78 | 77 | protected function makeReplacements(&$stub) |
79 | 78 | { |
@@ -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 |