| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class UnitTestEmbed extends SapphireTest |
||
| 10 | { |
||
| 11 | private bool $firstRequest = true; |
||
| 12 | |||
| 13 | public function getFirstRequest(): bool |
||
| 14 | { |
||
| 15 | return $this->firstRequest; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function setFirstRequest(bool $b): void |
||
| 19 | { |
||
| 20 | $this->firstRequest = $b; |
||
| 21 | } |
||
| 22 | |||
| 23 | protected function createEmbedContainer( |
||
| 37 | } |
||
| 38 | } |
||
| 39 |