Completed
Push — develop ( d22d35...2f1e2f )
by Paul
02:10
created
src/Container/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      */
68 68
     public function get($id)
69 69
     {
70
-        if (! Validator::stringType()->validate($id)) {
70
+        if (!Validator::stringType()->validate($id)) {
71 71
             throw new ContainerException('Identifier is not a string');
72 72
         }
73 73
         return $this->resolveInstance($id);
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
             throw new ContainerException(sprintf('Class "%s" does not exists', $class));
125 125
         }
126 126
 
127
-        if (! $reflection->isInstantiable()) {
127
+        if (!$reflection->isInstantiable()) {
128 128
             throw new ContainerException(sprintf('Class "%s" is not instantiable', $class));
129 129
         }
130 130
         return $this->buildInstance($reflection);
Please login to merge, or discard this patch.