Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
5 | final class TestClient |
||
6 | { |
||
7 | private $clock; |
||
8 | private $uri; |
||
|
|||
9 | private $resource; |
||
10 | |||
11 | public function __construct(TestClock $clock) |
||
12 | { |
||
13 | $this->clock = $clock; |
||
14 | } |
||
15 | |||
16 | public function to(string $page, ?int $element = null): void |
||
17 | { |
||
18 | |||
19 | } |
||
20 | |||
21 | public function do(string $action, array $parameters = []): void |
||
22 | { |
||
23 | |||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @param string $property |
||
28 | * @return int|float|bool|string|array |
||
29 | */ |
||
30 | public function see(string $property) |
||
31 | { |
||
32 | return 0; |
||
33 | } |
||
34 | |||
35 | /** @return string[] */ |
||
36 | public function flashMessages(): array |
||
39 | } |
||
40 | } |
||
41 |