Overrides CollectionInterface::remove
public function remove(mixed $element) : bool { if (($position = array_search($element, $this->data, true)) !== false) { unset($this[$position]); return true; } return false; }