Checks whether or not the method is safe.
https://tools.ietf.org/html/rfc7231#section-4.2.1
public function isMethodSafe() : bool { return \in_array($this->getMethod(), [ 'GET', 'HEAD', 'OPTIONS', 'TRACE', ]); }