| 1 | <?php |
||
| 8 | class LocatorConstraint extends Constraint |
||
| 9 | { |
||
| 10 | protected $_type; |
||
| 11 | protected $_selector; |
||
| 12 | protected $_filters; |
||
| 13 | |||
| 14 | 5 | public function __construct($type, $selector, array $filters = []) |
|
| 20 | 5 | ||
| 21 | 5 | protected function matches($other): bool |
|
| 31 | |||
| 32 | protected function failureDescription($other): string |
||
| 50 | 1 | ||
| 51 | /** |
||
| 52 | * Returns a string representation of the constraint. |
||
| 53 | */ |
||
| 54 | public function toString(): string |
||
| 58 | } |
||
| 59 |