| 1 | <?php |
||
| 10 | class Field extends AbstractXPath |
||
| 11 | { |
||
| 12 | const TYPE = '(self::input and (not(@type) or @type != \'submit\')) or self::textarea or self::select'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @return string |
||
| 16 | */ |
||
| 17 | 12 | public function getType() |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @return array |
||
| 24 | */ |
||
| 25 | 12 | public function getMatchers() |
|
| 35 | } |
||
| 36 |