| 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 = []) |
|
| 22 | |||
| 23 | 2 | protected function matches($other): bool |
|
| 33 | |||
| 34 | 1 | protected function failureDescription($other): string |
|
| 52 | |||
| 53 | /** |
||
| 54 | * Returns a string representation of the constraint. |
||
| 55 | * |
||
| 56 | * @return string |
||
| 57 | */ |
||
| 58 | 1 | public function toString(): string |
|
| 62 | } |
||
| 63 |