@@ -114,7 +114,7 @@ discard block |
||
| 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 |
||
| 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 | |