Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 0 |
1 | <?php |
||
17 | final class RedirectionMsg |
||
18 | { |
||
19 | private $redirect; |
||
20 | |||
21 | /** |
||
22 | * Redirector constructor. |
||
23 | * |
||
24 | * @param Redirector $redirect |
||
25 | */ |
||
26 | 10 | public function __construct(Redirector $redirect) |
|
29 | 10 | } |
|
30 | |||
31 | /** |
||
32 | * @param string $method |
||
33 | * @param array $parameters |
||
34 | * @return $this |
||
35 | * |
||
36 | * @throws \BadMethodCallException |
||
37 | */ |
||
38 | public function __call($method, $parameters) |
||
49 |