| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class AnotherPage extends ATemplate |
||
| 12 | { |
||
| 13 | use TFile; |
||
| 14 | |||
| 15 | 5 | protected function templatePath(): string |
|
| 16 | { |
||
| 17 | 5 | return __DIR__ . '/Templates/AnotherPage.phtml'; |
|
| 18 | } |
||
| 19 | |||
| 20 | 5 | protected function fillInputs(): void |
|
| 21 | { |
||
| 22 | 5 | $this->addInput('{PAGE_URL}'); |
|
| 23 | 5 | $this->addInput('{PAGE_NUMBER}'); |
|
| 24 | 5 | } |
|
| 25 | |||
| 26 | 5 | public function setData(ILink $link, int $pageNumber): self |
|
| 32 | } |
||
| 33 | } |
||
| 34 |