Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class EmbedUnitTest extends SapphireTest |
||
15 | { |
||
16 | private bool $firstRequest = true; |
||
17 | |||
18 | public function getFirstRequest(): bool |
||
19 | { |
||
20 | return $this->firstRequest; |
||
21 | } |
||
22 | |||
23 | public function setFirstRequest(bool $b): void |
||
24 | { |
||
25 | $this->firstRequest = $b; |
||
26 | } |
||
27 | |||
28 | protected function createEmbedContainer( |
||
44 | } |
||
45 | } |
||
46 |