Passed
Push — master ( cc5db1...7c7fa2 )
by Michael
02:45
created
src/Mapper/Handler/LinkHandler/LinkHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
         foreach ($definition->getParameters() as $name => $value)
116 116
         {
117
-            if (! preg_match('~@(?:(?<namespace>[a-z0-9_\.]+)\:)?(?<name>[a-z0-9_\.]+)~i', $value, $matches)) {
117
+            if (!preg_match('~@(?:(?<namespace>[a-z0-9_\.]+)\:)?(?<name>[a-z0-9_\.]+)~i', $value, $matches)) {
118 118
                 $resolved[$name] = $value;
119 119
                 continue;
120 120
             }
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
                 continue;
125 125
             }
126 126
 
127
-            if (! isset($scope[$matches['namespace']])) {
127
+            if (!isset($scope[$matches['namespace']])) {
128 128
                 throw new \LogicException(sprintf('Object "%s" not found in the scope.', $matches['namespace']));
129 129
             }
130 130
 
Please login to merge, or discard this patch.