@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | private function getTeleporter($typeName) |
| 66 | 66 | { |
| 67 | - if (! isset($this->teleporters[$typeName])) { |
|
| 67 | + if (!isset($this->teleporters[$typeName])) { |
|
| 68 | 68 | $factory = $this->factories[$typeName]; |
| 69 | 69 | $this->teleporters[$typeName] = $factory(); |
| 70 | 70 | } |
@@ -81,16 +81,16 @@ discard block |
||
| 81 | 81 | { |
| 82 | 82 | $container = new static(); |
| 83 | 83 | |
| 84 | - $container->factories['stream-teleporter'] = function () { |
|
| 84 | + $container->factories['stream-teleporter'] = function() { |
|
| 85 | 85 | return StreamTeleporter::create(); |
| 86 | 86 | }; |
| 87 | 87 | |
| 88 | - $container->factories['local-teleporter'] = function () { |
|
| 88 | + $container->factories['local-teleporter'] = function() { |
|
| 89 | 89 | return LocalTeleporter::create(); |
| 90 | 90 | }; |
| 91 | 91 | |
| 92 | 92 | if (class_exists('Guzzle\Http\Client')) { |
| 93 | - $container->factories['guzzle-teleporter'] = function () { |
|
| 93 | + $container->factories['guzzle-teleporter'] = function() { |
|
| 94 | 94 | return GuzzleTeleporter::create(); |
| 95 | 95 | }; |
| 96 | 96 | } |