Passed
Push — master ( 12fba8...1f8afc )
by Caen
04:01 queued 12s
created
packages/framework/src/Foundation/Kernel/Hyperlinks.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      */
82 82
     public function mediaLink(string $destination, bool $validate = false): string
83 83
     {
84
-        if ($validate && ! file_exists($sourcePath = "{$this->kernel->getMediaDirectory()}/$destination")) {
84
+        if ($validate && !file_exists($sourcePath = "{$this->kernel->getMediaDirectory()}/$destination")) {
85 85
             throw new FileNotFoundException($sourcePath);
86 86
         }
87 87
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function hasSiteUrl(): bool
119 119
     {
120
-        return ! blank(config('hyde.url'));
120
+        return !blank(config('hyde.url'));
121 121
     }
122 122
 
123 123
     /**
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
@@ -212,7 +212,7 @@
 block discarded – undo
212 212
     {
213 213
         $storagePath = Hyde::mediaPath($this->source);
214 214
 
215
-        if (! file_exists($storagePath)) {
215
+        if (!file_exists($storagePath)) {
216 216
             throw new FileNotFoundException(sprintf('Image at %s does not exist', Hyde::pathToRelative($storagePath)));
217 217
         }
218 218
 
Please login to merge, or discard this patch.
packages/testing/src/UnitTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
     protected static function needsKernel(): void
15 15
     {
16
-        if (! self::$hasSetUpKernel) {
16
+        if (!self::$hasSetUpKernel) {
17 17
             self::setupKernel();
18 18
         }
19 19
     }
Please login to merge, or discard this patch.