| 1 | <?php |
||
| 7 | abstract class Helper |
||
| 8 | { |
||
| 9 | /** @var string */ |
||
| 10 | protected $targetElement = '*'; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | protected $targetAttribute = null; |
||
| 14 | |||
| 15 | public function getTargetElement(): string |
||
| 19 | |||
| 20 | public function getTargetAttribute(): ?string |
||
| 24 | |||
| 25 | abstract public function process(HtmlElement $element); |
||
| 26 | } |
||
| 27 |