Passed
Push — main ( 45a3f1...3426cc )
by Thomas
02:46
created
src/Registry.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             return $keys;
59 59
         }
60 60
 
61
-        return array_values(array_filter($keys, function ($item) {
61
+        return array_values(array_filter($keys, function($item) {
62 62
             return $item !== PsrContainer::class && !is_subclass_of($item, PsrContainer::class);
63 63
         }));
64 64
     }
@@ -90,8 +90,7 @@  discard block
 block discarded – undo
90 90
         }
91 91
 
92 92
         $message = empty($this->tag) ?
93
-            'Unresolvable id: ' . $id :
94
-            'Unresolvable tagged id: ' . $this->tag . '::' . $id;
93
+            'Unresolvable id: ' . $id : 'Unresolvable tagged id: ' . $this->tag . '::' . $id;
95 94
 
96 95
         throw new NotFoundException($message);
97 96
     }
Please login to merge, or discard this patch.