Overrides AttributeBagInterface::remove
public function remove(string $name) : mixed { $retval = null; if (\array_key_exists($name, $this->attributes)) { $retval = $this->attributes[$name]; unset($this->attributes[$name]); } return $retval; }