@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace ApiClients\Middleware\Pool; |
4 | 4 | |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | /** @var Pool $pool */ |
33 | 33 | $pool = $options[self::class][Options::POOL]; |
34 | - return $pool->allocateOne()->then(function (Allocation $allocation) use ($request) { |
|
34 | + return $pool->allocateOne()->then(function(Allocation $allocation) use ($request) { |
|
35 | 35 | $this->allocation = $allocation; |
36 | 36 | return resolve($request); |
37 | 37 | }); |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace ApiClients\Middleware\Pool; |
4 | 4 |