Completed
Push — master ( f88791...2e24f4 )
by Jesse
02:13
created
src/Container.php 1 patch
Braces   +12 added lines, -4 removed lines patch added patch discarded remove patch
@@ -85,16 +85,24 @@
 block discarded – undo
85 85
     /** @throws ServiceNotFound */
86 86
     private function mustKnowAbout(string $theService) : void
87 87
     {
88
-        if ($this->has($theService)) return;
88
+        if ($this->has($theService)) {
89
+            return;
90
+        }
89 91
         throw ServiceNotFound::noServiceNamed($theService);
90 92
     }
91 93
 
92 94
     /** @throws InvalidServiceDefinition */
93 95
     private function typeMustCheckOut(string $serviceName, $service, string $requiredType) : void
94 96
     {
95
-        if (empty($requiredType)) return;
96
-        if (gettype($service) === $requiredType) return;
97
-        if ($service instanceof $requiredType) return;
97
+        if (empty($requiredType)) {
98
+            return;
99
+        }
100
+        if (gettype($service) === $requiredType) {
101
+            return;
102
+        }
103
+        if ($service instanceof $requiredType) {
104
+            return;
105
+        }
98 106
         throw InvalidServiceType::serviceIsNotOfType($serviceName, $requiredType);
99 107
     }
100 108
 }
Please login to merge, or discard this patch.