Passed
Push — master ( 3942dc...0f8d9d )
by Caen
03:31 queued 12s
created
packages/framework/src/Pages/VirtualPage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             return $this->__call('compile', []);
92 92
         }
93 93
 
94
-        if (! $this->getContents() && $this->getBladeView()) {
94
+        if (!$this->getContents() && $this->getBladeView()) {
95 95
             if (str_ends_with($this->view, '.blade.php')) {
96 96
                 return AnonymousViewCompiler::call($this->getBladeView(), $this->matter->toArray());
97 97
             }
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      */
116 116
     public function __call(string $method, array $parameters): mixed
117 117
     {
118
-        if (! isset($this->macros[$method])) {
118
+        if (!isset($this->macros[$method])) {
119 119
             throw new BadMethodCallException(sprintf(
120 120
                 'Method %s::%s does not exist.', static::class, $method
121 121
             ));
Please login to merge, or discard this patch.