@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Moka\Proxy; |
5 | 5 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function get($id): ProxyInterface |
35 | 35 | { |
36 | - if (!$this->has($id)) { |
|
36 | + if ( ! $this->has($id)) { |
|
37 | 37 | throw new InvalidIdentifierException(sprintf('The mock object with id "%s" is not found', $id)); |
38 | 38 | } |
39 | 39 |