Passed
Push — master ( 9f94f7...eb1f27 )
by Caen
04:11 queued 15s
created
packages/publications/src/Commands/ValidatePublicationTypesCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     {
46 46
         $timeStart = microtime(true);
47 47
 
48
-        if (! $this->option('json')) {
48
+        if (!$this->option('json')) {
49 49
             $this->title('Validating publication schemas!');
50 50
         }
51 51
 
Please login to merge, or discard this patch.
packages/framework/src/Framework/Factories/NavigationDataFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 
126 126
     private function isNonDocumentationPageInHiddenSubdirectory(): bool
127 127
     {
128
-        return ! $this->isInstanceOf(DocumentationPage::class)
128
+        return !$this->isInstanceOf(DocumentationPage::class)
129 129
             && $this->pageIsInSubdirectory()
130 130
             && $this->getSubdirectoryConfiguration() === 'hidden'
131 131
             && basename($this->identifier) !== 'index';
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 
209 209
     protected function invert(?bool $value): ?bool
210 210
     {
211
-        return $value === null ? null : ! $value;
211
+        return $value === null ? null : !$value;
212 212
     }
213 213
 
214 214
     protected function offset(?int $value, int $offset): ?int
Please login to merge, or discard this patch.