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