We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | private bool $deleteWhenEntryIsDeleted = true; |
27 | 27 | |
28 | - private bool|string $attachedToFakeField = false; |
|
28 | + private bool | string $attachedToFakeField = false; |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * Cloud disks have the ability to generate temporary URLs to files, should we do it? |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | /******************************* |
63 | 63 | * Static methods |
64 | 64 | *******************************/ |
65 | - public static function for(array $crudObject, array $definition): UploaderInterface |
|
65 | + public static function for (array $crudObject, array $definition): UploaderInterface |
|
66 | 66 | { |
67 | 67 | return new static($crudObject, $definition); |
68 | 68 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | public function deleteUploadedFiles(Model $entry): void |
104 | 104 | { |
105 | 105 | if ($this->deleteWhenEntryIsDeleted) { |
106 | - if (! in_array(SoftDeletes::class, class_uses_recursive($entry), true)) { |
|
106 | + if (!in_array(SoftDeletes::class, class_uses_recursive($entry), true)) { |
|
107 | 107 | $this->performFileDeletion($entry); |
108 | 108 | |
109 | 109 | return; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | |
180 | 180 | public function getPreviousFiles(Model $entry): mixed |
181 | 181 | { |
182 | - if (! $this->attachedToFakeField) { |
|
182 | + if (!$this->attachedToFakeField) { |
|
183 | 183 | return $this->getOriginalValue($entry); |
184 | 184 | } |
185 | 185 | |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | $value = $entry->{$this->getAttributeName()}; |
219 | 219 | |
220 | 220 | if ($this->handleMultipleFiles) { |
221 | - if (! isset($entry->getCasts()[$this->getName()]) && is_string($value)) { |
|
221 | + if (!isset($entry->getCasts()[$this->getName()]) && is_string($value)) { |
|
222 | 222 | $entry->{$this->getAttributeName()} = json_decode($value, true); |
223 | 223 | } |
224 | 224 | |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | |
251 | 251 | if ($this->handleMultipleFiles) { |
252 | 252 | // ensure we have an array of values when field is not casted in model. |
253 | - if (! isset($entry->getCasts()[$this->name]) && is_string($values)) { |
|
253 | + if (!isset($entry->getCasts()[$this->name]) && is_string($values)) { |
|
254 | 254 | $values = json_decode($values, true); |
255 | 255 | } |
256 | 256 | foreach ($values ?? [] as $value) { |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | |
268 | 268 | private function performFileDeletion(Model $entry) |
269 | 269 | { |
270 | - if (! $this->handleRepeatableFiles) { |
|
270 | + if (!$this->handleRepeatableFiles) { |
|
271 | 271 | $this->deleteFiles($entry); |
272 | 272 | |
273 | 273 | return; |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | |
297 | 297 | $previousValue = $entry->getOriginal($field); |
298 | 298 | |
299 | - if (! $previousValue) { |
|
299 | + if (!$previousValue) { |
|
300 | 300 | return $previousValue; |
301 | 301 | } |
302 | 302 |