| 1 | <?php |
||
| 10 | class CheckBox extends TestableInput |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @return string |
||
| 14 | */ |
||
| 15 | protected function getSearchSelector(): string |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | protected function getFilterSelector(): string |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param string $value |
||
| 30 | */ |
||
| 31 | public function setValue(string $value): void |
||
| 39 | |||
| 40 | private function clickCheckBox(): void |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return bool |
||
| 50 | */ |
||
| 51 | private function getCheckBoxState(): bool |
||
| 60 | } |
||
| 61 |