@@ -178,7 +178,9 @@ |
||
178 | 178 | public function can($verb): bool |
179 | 179 | { |
180 | 180 | foreach (static::$bootedTraitMethods['can'] as $method) { |
181 | - if(!method_exists($this, $method)) continue; |
|
181 | + if(!method_exists($this, $method)) { |
|
182 | + continue; |
|
183 | + } |
|
182 | 184 | $this->$method($verb); |
183 | 185 | } |
184 | 186 |