@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Stratadox\Proxy; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Stratadox\Proxy; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Stratadox\Proxy; |
6 | 6 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Stratadox\Proxy; |
6 | 6 | |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | $this->owner = $theOwner; |
30 | 30 | $this->propertyShouldReference = $theProperty; |
31 | 31 | $this->atPosition = $atPosition; |
32 | - $this->setter = $setter ?: function (string $property, $value, $position): void |
|
32 | + $this->setter = $setter ?: function(string $property, $value, $position): void |
|
33 | 33 | { |
34 | 34 | $original = $this->$property; |
35 | 35 | if (!$original instanceof Alterable) { |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Stratadox\Proxy; |
6 | 6 | |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | ) { |
26 | 26 | $this->owner = $theOwner; |
27 | 27 | $this->propertyShouldReference = $theProperty; |
28 | - $this->setter = $setter ?: function (string $property, $value) : void |
|
28 | + $this->setter = $setter ?: function(string $property, $value) : void |
|
29 | 29 | { |
30 | 30 | $this->$property = $value; |
31 | 31 | }; |
@@ -20,7 +20,7 @@ |
||
20 | 20 | 'Could not assign the value for `%s::%s`, got an `%s` instead of `%s`', |
21 | 21 | theClassOf($theOwningObject), |
22 | 22 | $property, |
23 | - isItAnObject($whatWeGot)? theClassOf($whatWeGot) : orTheTypeOf($whatWeGot), |
|
23 | + isItAnObject($whatWeGot) ? theClassOf($whatWeGot) : orTheTypeOf($whatWeGot), |
|
24 | 24 | $interface |
25 | 25 | )); |
26 | 26 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Stratadox\Proxy; |
6 | 6 | |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $this->owner = $theOwner; |
29 | 29 | $this->propertyShouldReference = $theProperty; |
30 | 30 | $this->atPosition = $atPosition; |
31 | - $this->setter = $setter ?: function (string $property, $value, $position) : void |
|
31 | + $this->setter = $setter ?: function(string $property, $value, $position) : void |
|
32 | 32 | { |
33 | 33 | $this->$property[$position] = $value; |
34 | 34 | }; |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Stratadox\Proxy; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Stratadox\Proxy; |
6 | 6 |