public function getParameters(): array
{ return $this->parameters;
} public function getBodyAsString(): string
{ $body = parent::
getBodyAsString();
foreach ($this->parameters
as $name =>
$value) { if (null !==
$value) { $body .= '; '.
$this->
createParameter($name,
$value);
} } return $body;
} /**
* Generate a list of all tokens in the final header.
*
* This doesn't need to be overridden in theory, but it is for implementation
* reasons to prevent potential breakage of attributes.
*/