callback = $callback; } public function accept(): bool { return true; // Accept all elements } public function current(): mixed { return ($this->callback)(parent::current()); } }