| 1 | <?php |
||
| 8 | class NegativeLocatorConstraint extends Constraint |
||
| 9 | { |
||
| 10 | protected $_type; |
||
| 11 | protected $_selector; |
||
| 12 | protected $_filters; |
||
| 13 | |||
| 14 | 2 | public function __construct($type, $selector, array $filters = []) |
|
| 20 | 2 | ||
| 21 | 2 | 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 | * @return string |
||
| 55 | */ |
||
| 56 | public function toString(): string |
||
| 60 | } |
||
| 61 |