Evaluates the constraint for parameter $other. Returns true if the constraint is met, false otherwise.
Overrides Constraint::matches
protected function matches(mixed $other) : bool { if (!is_array($other)) { return false; } return array_is_list($other); }