@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | public function getFactory($protocol) |
23 | 23 | { |
24 | - if (! isset($this->factories[$protocol])) { |
|
24 | + if (!isset($this->factories[$protocol])) { |
|
25 | 25 | throw new \RuntimeException('Unsupported protocol: ' . $protocol); |
26 | 26 | } |
27 | 27 | |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | $iterator = $factory($container); |
38 | 38 | |
39 | - if (! $iterator) { |
|
39 | + if (!$iterator) { |
|
40 | 40 | throw new \RuntimeException('Unsupported protocol: ' . $protocol); |
41 | 41 | } |
42 | 42 |