Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Browser implements BrowserInterface |
||
12 | { |
||
13 | /** @var AgentInterface */ |
||
14 | private $agent; |
||
15 | |||
16 | /** |
||
17 | * @param AgentInterface $agent |
||
18 | * @constructor |
||
19 | */ |
||
20 | 1 | public function __construct(AgentInterface $agent) |
|
23 | } |
||
24 | |||
25 | /** |
||
26 | * @inheritDoc |
||
27 | */ |
||
28 | 1 | public function disableAutomaticTimingScripts(): void |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * @inheritDoc |
||
35 | */ |
||
36 | 1 | public function getHeaderScript(): string |
|
39 | } |
||
40 | |||
41 | /** |
||
42 | * @inheritDoc |
||
43 | */ |
||
44 | 1 | public function getFooterScript(): string |
|
49 |