Passed
Push — master ( db17d2...5a4a00 )
by Ben
07:00
created
src/Management/AbstractManager.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,9 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.