@@ -65,7 +65,7 @@ |
||
| 65 | 65 | */ |
| 66 | 66 | public function add($middlewares, array $options = []): self |
| 67 | 67 | { |
| 68 | - if (! is_array($middlewares)) { |
|
| 68 | + if (!is_array($middlewares)) { |
|
| 69 | 69 | $middlewares = [$middlewares]; |
| 70 | 70 | } |
| 71 | 71 | |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | */ |
| 32 | 32 | public function expectsJson(): bool |
| 33 | 33 | { |
| 34 | - return ($this->ajax() && ! $this->pjax() && $this->acceptsAnyContentType()) || $this->wantsJson(); |
|
| 34 | + return ($this->ajax() && !$this->pjax() && $this->acceptsAnyContentType()) || $this->wantsJson(); |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | /** |
@@ -98,7 +98,7 @@ |
||
| 98 | 98 | return $this->withFile($filepath, ['download' => true, 'name' => $filename]); |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - if (! empty($data)) { |
|
| 101 | + if (!empty($data)) { |
|
| 102 | 102 | return $this->withStringBody($data) |
| 103 | 103 | ->withType(pathinfo($filename, PATHINFO_EXTENSION)) |
| 104 | 104 | ->withDownload($filename); |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | $input = $this->all(); |
| 88 | 88 | |
| 89 | 89 | foreach ($keys as $value) { |
| 90 | - if (! Arr::has($input, $value)) { |
|
| 90 | + if (!Arr::has($input, $value)) { |
|
| 91 | 91 | return false; |
| 92 | 92 | } |
| 93 | 93 | } |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | $keys = is_array($key) ? $key : func_get_args(); |
| 150 | 150 | |
| 151 | 151 | foreach ($keys as $value) { |
| 152 | - if (! $this->isEmptyString($value)) { |
|
| 152 | + if (!$this->isEmptyString($value)) { |
|
| 153 | 153 | return false; |
| 154 | 154 | } |
| 155 | 155 | } |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | { |
| 199 | 199 | $keys = is_array($key) ? $key : func_get_args(); |
| 200 | 200 | |
| 201 | - return ! $this->has($keys); |
|
| 201 | + return !$this->has($keys); |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | /** |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | { |
| 227 | 227 | $value = $this->input($key); |
| 228 | 228 | |
| 229 | - return ! is_bool($value) && ! is_array($value) && trim((string) $value) === ''; |
|
| 229 | + return !is_bool($value) && !is_array($value) && trim((string) $value) === ''; |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | /** |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | { |
| 247 | 247 | $input = array_replace_recursive($this->data(), $this->allFiles()); |
| 248 | 248 | |
| 249 | - if (! $keys) { |
|
| 249 | + if (!$keys) { |
|
| 250 | 250 | return $input; |
| 251 | 251 | } |
| 252 | 252 | |
@@ -341,9 +341,9 @@ discard block |
||
| 341 | 341 | public function enum(string $key, $enumClass) |
| 342 | 342 | { |
| 343 | 343 | if ($this->isNotFilled($key) |
| 344 | - || ! function_exists('enum_exists') |
|
| 345 | - || ! enum_exists($enumClass) |
|
| 346 | - || ! method_exists($enumClass, 'tryFrom')) { |
|
| 344 | + || !function_exists('enum_exists') |
|
| 345 | + || !enum_exists($enumClass) |
|
| 346 | + || !method_exists($enumClass, 'tryFrom')) { |
|
| 347 | 347 | return null; |
| 348 | 348 | } |
| 349 | 349 | |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | */ |
| 458 | 458 | public function hasFile(string $key): bool |
| 459 | 459 | { |
| 460 | - if (! is_array($files = $this->file($key))) { |
|
| 460 | + if (!is_array($files = $this->file($key))) { |
|
| 461 | 461 | $files = [$files]; |
| 462 | 462 | } |
| 463 | 463 | |
@@ -96,7 +96,7 @@ |
||
| 96 | 96 | */ |
| 97 | 97 | public function fullUrl(): string |
| 98 | 98 | { |
| 99 | - if (! empty($query = $this->getEnv('QUERY_STRING'))) { |
|
| 99 | + if (!empty($query = $this->getEnv('QUERY_STRING'))) { |
|
| 100 | 100 | return $this->url() . '?' . $query; |
| 101 | 101 | } |
| 102 | 102 | |
@@ -422,7 +422,7 @@ discard block |
||
| 422 | 422 | |
| 423 | 423 | private function buildDsn(): string |
| 424 | 424 | { |
| 425 | - if (! empty($this->dsn)) { |
|
| 425 | + if (!empty($this->dsn)) { |
|
| 426 | 426 | return $this->dsn; |
| 427 | 427 | } |
| 428 | 428 | |
@@ -430,8 +430,8 @@ discard block |
||
| 430 | 430 | static::PROTOCOL_SMTP => "smtp://{$this->username}:{$this->password}@{$this->host}:{$this->port}", |
| 431 | 431 | static::PROTOCOL_SENDMAIL => 'sendmail://default', |
| 432 | 432 | static::PROTOCOL_MAIL => 'sendmail://default', |
| 433 | - static::PROTOCOL_POSTMARK => "postmark+smtp://{$this->username}@default", // username joue le role de ID |
|
| 434 | - static::PROTOCOL_SENDGRID => "sendgrid+smtp://apikey:{$this->username}@default", // username joue le role de API_KEY |
|
| 433 | + static::PROTOCOL_POSTMARK => "postmark+smtp://{$this->username}@default", // username joue le role de ID |
|
| 434 | + static::PROTOCOL_SENDGRID => "sendgrid+smtp://apikey:{$this->username}@default", // username joue le role de API_KEY |
|
| 435 | 435 | default => "{$this->protocol}+smtp://{$this->username}:{$this->password}@default", |
| 436 | 436 | }; |
| 437 | 437 | } |
@@ -40,11 +40,11 @@ |
||
| 40 | 40 | if (empty($dependency['class']) || empty($dependency['package'])) { |
| 41 | 41 | throw new InvalidArgumentException('Invalid dependencies property'); |
| 42 | 42 | } |
| 43 | - if (! is_string($dependency['class']) || ! is_string($dependency['package'])) { |
|
| 43 | + if (!is_string($dependency['class']) || !is_string($dependency['package'])) { |
|
| 44 | 44 | throw new InvalidArgumentException('Invalid dependencies property'); |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - if (! class_exists($dependency['class'])) { |
|
| 47 | + if (!class_exists($dependency['class'])) { |
|
| 48 | 48 | throw new RuntimeException(lang('Mail.dependancyNotFound', [$dependency['class'], static::class, $dependency['package']])); |
| 49 | 49 | } |
| 50 | 50 | } |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | public function send(Mail $mail): bool |
| 174 | 174 | { |
| 175 | 175 | foreach ($this->bcc() as $key => $value) { |
| 176 | - if (empty($value) || ! is_string($value)) { |
|
| 176 | + if (empty($value) || !is_string($value)) { |
|
| 177 | 177 | continue; |
| 178 | 178 | } |
| 179 | 179 | |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | foreach ($this->cc() as $key => $value) { |
| 188 | - if (empty($value) || ! is_string($value)) { |
|
| 188 | + if (empty($value) || !is_string($value)) { |
|
| 189 | 189 | continue; |
| 190 | 190 | } |
| 191 | 191 | |
@@ -198,12 +198,12 @@ discard block |
||
| 198 | 198 | |
| 199 | 199 | $content = $this->content(); |
| 200 | 200 | |
| 201 | - if (! empty($content['view'])) { |
|
| 201 | + if (!empty($content['view'])) { |
|
| 202 | 202 | $mail->view($content['view'], $this->data()); |
| 203 | - } elseif (! empty($content['html'])) { |
|
| 203 | + } elseif (!empty($content['html'])) { |
|
| 204 | 204 | $mail->html($content['html']); |
| 205 | 205 | } |
| 206 | - if (! empty($content['text'])) { |
|
| 206 | + if (!empty($content['text'])) { |
|
| 207 | 207 | $mail->text($content['text']); |
| 208 | 208 | } |
| 209 | 209 | |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | $mail->priority($this->priority()); |
| 213 | 213 | |
| 214 | 214 | foreach ($this->replyTo() as $key => $value) { |
| 215 | - if (empty($value) || ! is_string($value)) { |
|
| 215 | + if (empty($value) || !is_string($value)) { |
|
| 216 | 216 | continue; |
| 217 | 217 | } |
| 218 | 218 | |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | return $models; |
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - if (! self::isLoaded('models', $model)) { |
|
| 76 | + if (!self::isLoaded('models', $model)) { |
|
| 77 | 77 | self::loaded('models', $model, FileLocator::model($model, $connection)); |
| 78 | 78 | } |
| 79 | 79 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | */ |
| 88 | 88 | private static function isLoaded(string $module, $element): bool |
| 89 | 89 | { |
| 90 | - if (! isset(self::$loads[$module]) || ! is_array(self::$loads[$module])) { |
|
| 90 | + if (!isset(self::$loads[$module]) || !is_array(self::$loads[$module])) { |
|
| 91 | 91 | return false; |
| 92 | 92 | } |
| 93 | 93 | |