<?php class Filter extends \RecursiveFilterIterator { public function __construct($iterator) {} #[ReturnTypeWillChange] public function accept() {} #[ReturnTypeWillChange] public function getChildren() {} } class ExactMatch extends Filter { public function accept() {} public function getChildren() {} } new ExactMatch([1, 2, [1, 2]]);
You have javascript disabled. You will not be able to edit any code.