Passed
Push — master ( 6ee6e0...72408a )
by Jesse
02:12
created
src/Container.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,9 @@
 block discarded – undo
75 75
     /** @throws ServiceNotFound */
76 76
     private function mustKnowAbout(string $theService) : void
77 77
     {
78
-        if ($this->has($theService)) return;
78
+        if ($this->has($theService)) {
79
+            return;
80
+        }
79 81
         throw ServiceNotFound::noServiceNamed($theService);
80 82
     }
81 83
 }
Please login to merge, or discard this patch.