Scalr\Api\Rest\Http\Request::isFormData PHP Метод

isFormData() публичный Метод

Whether content type is application/x-www-form-urlencoded
public isFormData ( ) : boolean
Результат boolean Returns true if content type is a form data
    public function isFormData()
    {
        return $this->getMethod() === self::METHOD_POST && $this->getContentType() === null || in_array($this->getMediaType(), self::$formDataMediaTypes);
    }