@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | public function __construct($callchain, $expected_target, $target) |
16 | 16 | { |
17 | - $this->message = "You are trying to define a target of type ".gettype($target)." for the $callchain allowing only: ".$expected_target; |
|
17 | + $this->message = "You are trying to define a target of type " . gettype($target) . " for the $callchain allowing only: " . $expected_target; |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | /**/ |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | public function __construct($callchain, $expected_target, $target) |
16 | 16 | { |
17 | - $this->message = "You are trying to define a target of class ".get_class($target)." for the $callchain allowing only targets of class ".$expected_target; |
|
17 | + $this->message = "You are trying to define a target of class " . get_class($target) . " for the $callchain allowing only targets of class " . $expected_target; |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | /**/ |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | public function __construct($callchain, $expected_target) |
16 | 16 | { |
17 | - $this->message = "The expected target of $callchain is neither a defined class nor a native type: ". $expected_target; |
|
17 | + $this->message = "The expected target of $callchain is neither a defined class nor a native type: " . $expected_target; |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | /**/ |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | public function __construct($callchain, $expected_target, $target) |
16 | 16 | { |
17 | - $this->message = "You are trying to define a target of class ".get_class($target)." for the $callchain allowing only targets implementing ".$expected_target; |
|
17 | + $this->message = "You are trying to define a target of class " . get_class($target) . " for the $callchain allowing only targets implementing " . $expected_target; |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | /**/ |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | public function __construct($callchain, $expected_target, $target) |
16 | 16 | { |
17 | - $this->message = "You are trying to define the target ".spl_object_id($target)." for the $callchain which already has one: ".spl_object_id($expected_target); |
|
17 | + $this->message = "You are trying to define the target " . spl_object_id($target) . " for the $callchain which already has one: " . spl_object_id($expected_target); |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | /**/ |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | * @param mixed $value |
23 | 23 | * @return array |
24 | 24 | */ |
25 | - protected function prepareArgs (array $args, $value) |
|
25 | + protected function prepareArgs(array $args, $value) |
|
26 | 26 | { |
27 | 27 | return $this->hasPlaceholder($args) |
28 | 28 | ? $this->replacePlaceholderWithValue($args, $value) |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * @param array $args |
35 | 35 | * @return bool |
36 | 36 | */ |
37 | - protected function hasPlaceholder (array $args) |
|
37 | + protected function hasPlaceholder(array $args) |
|
38 | 38 | { |
39 | 39 | return in_array($this->placeholder, $args, true); |
40 | 40 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | * @param array $args |
45 | 45 | * @return array |
46 | 46 | */ |
47 | - protected function addValueAsFirstArg (array $args, $value) |
|
47 | + protected function addValueAsFirstArg(array $args, $value) |
|
48 | 48 | { |
49 | 49 | array_unshift($args, $value); |
50 | 50 | |
@@ -57,9 +57,9 @@ discard block |
||
57 | 57 | * @param mixed $value |
58 | 58 | * @return array |
59 | 59 | */ |
60 | - protected function replacePlaceholderWithValue (array $args, $value) |
|
60 | + protected function replacePlaceholderWithValue(array $args, $value) |
|
61 | 61 | { |
62 | - return array_map(function ($arg) use ($value) { |
|
62 | + return array_map(function($arg) use ($value) { |
|
63 | 63 | return $arg === $this->placeholder |
64 | 64 | ? $value |
65 | 65 | : $arg; |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * |
34 | 34 | * @param string $key The entry to acces |
35 | 35 | */ |
36 | - public function __construct($class_type_or_instance=null) |
|
36 | + public function __construct($class_type_or_instance = null) |
|
37 | 37 | { |
38 | 38 | if ($class_type_or_instance) { |
39 | 39 | $this->expectedTarget = $class_type_or_instance; |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | foreach ($this->stack as $i => $call) { |
103 | 103 | if (isset($call['method'])) { |
104 | 104 | $string .= '->'; |
105 | - $string .= $call['method'].'('; |
|
105 | + $string .= $call['method'] . '('; |
|
106 | 106 | $string .= implode(', ', array_map(function($argument) { |
107 | 107 | return var_export($argument, true); |
108 | 108 | }, $call['arguments'])); |
@@ -134,12 +134,12 @@ discard block |
||
134 | 134 | } |
135 | 135 | elseif (is_string($this->expectedTarget)) { |
136 | 136 | if (class_exists($this->expectedTarget)) { |
137 | - if (! $target instanceof $this->expectedTarget) { |
|
137 | + if (!$target instanceof $this->expectedTarget) { |
|
138 | 138 | throw new BadTargetClassException($this, $this->expectedTarget, $target); |
139 | 139 | } |
140 | 140 | } |
141 | 141 | elseif (interface_exists($this->expectedTarget)) { |
142 | - if (! $target instanceof $this->expectedTarget) { |
|
142 | + if (!$target instanceof $this->expectedTarget) { |
|
143 | 143 | throw new BadTargetInterfaceException($this, $this->expectedTarget, $target); |
144 | 144 | } |
145 | 145 | } |
@@ -186,14 +186,14 @@ discard block |
||
186 | 186 | catch (\BadMethodCallException $e) { |
187 | 187 | if ( |
188 | 188 | ( |
189 | - ( PHP_VERSION_ID < 70000 |
|
189 | + (PHP_VERSION_ID < 70000 |
|
190 | 190 | && $e->getTrace()[2]['file'] == __FILE__ |
191 | 191 | && $e->getTrace()[2]['function'] == 'call_user_func_array' |
192 | 192 | && $e->getTrace()[1]['function'] == $method_name |
193 | 193 | && $e->getTrace()[1]['class'] == get_class($current_chained_subject) |
194 | 194 | ) |
195 | 195 | || |
196 | - ( PHP_VERSION_ID >= 70000 |
|
196 | + (PHP_VERSION_ID >= 70000 |
|
197 | 197 | && $e->getTrace()[1]['file'] == __FILE__ |
198 | 198 | && $e->getTrace()[1]['function'] == 'call_user_func_array' |
199 | 199 | // The magic method call doesn't exist in the stack with PHP 7 |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * @param $target The target to apply the callchain on |
219 | 219 | * @return The value returned once the call chain is called uppon $target |
220 | 220 | */ |
221 | - public function __invoke($target=null) |
|
221 | + public function __invoke($target = null) |
|
222 | 222 | { |
223 | 223 | $out = $this->checkTarget($target); |
224 | 224 | |
@@ -234,13 +234,13 @@ discard block |
||
234 | 234 | ); |
235 | 235 | } |
236 | 236 | |
237 | - if (! $is_called && is_callable($call['method'])) { |
|
237 | + if (!$is_called && is_callable($call['method'])) { |
|
238 | 238 | $arguments = $this->prepareArgs($call['arguments'], $out); |
239 | 239 | $out = call_user_func_array($call['method'], $arguments); |
240 | 240 | $is_called = true; |
241 | 241 | } |
242 | 242 | |
243 | - if (! $is_called) { |
|
243 | + if (!$is_called) { |
|
244 | 244 | throw new \BadMethodCallException( |
245 | 245 | $call['method'] . "() is neither a method of " . get_class($out) |
246 | 246 | . " nor a function" |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | } |
249 | 249 | } |
250 | 250 | else { |
251 | - $out = $out[ $call['entry'] ]; |
|
251 | + $out = $out[$call['entry']]; |
|
252 | 252 | } |
253 | 253 | } |
254 | 254 | catch (\Exception $e) { |