Passed
Push — master ( 285f81...0108b8 )
by Caen
03:48 queued 13s
created
packages/framework/src/Facades/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 
58 58
     protected static function validated(mixed $value, string $type, string $key): mixed
59 59
     {
60
-        if (! call_user_func("is_$type", $value)) {
60
+        if (!call_user_func("is_$type", $value)) {
61 61
             throw new TypeError(sprintf('%s(): Config value %s must be of type %s, %s given', __METHOD__, $key, $type, gettype($value)));
62 62
         }
63 63
 
Please login to merge, or discard this patch.
packages/framework/src/Framework/Features/Blogging/Models/FeaturedImage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@
 block discarded – undo
215 215
     {
216 216
         $storagePath = Hyde::mediaPath($this->source);
217 217
 
218
-        if (! file_exists($storagePath)) {
218
+        if (!file_exists($storagePath)) {
219 219
             throw new FileNotFoundException(customMessage: sprintf('Featured image [%s] not found.', Hyde::pathToRelative($storagePath)));
220 220
         }
221 221
 
Please login to merge, or discard this patch.