Scalr\Api\Rest\Http\Request::isFormData PHP Méthode

isFormData() public méthode

Whether content type is application/x-www-form-urlencoded
public isFormData ( ) : boolean
Résultat 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);
    }