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