Your IP : 216.73.216.229


Current Path : /home/jeromecohp/www/templates/yootheme/packages/http-message/src/
Upload File :
Current File : /home/jeromecohp/www/templates/yootheme/packages/http-message/src/MessageTrait.php

<?php

namespace YOOtheme\Http;

trait MessageTrait
{
    /**
     * Gets content type.
     *
     * @return string|null
     */
    public function getContentType()
    {
        $result = $this->getHeader('Content-Type');

        return $result ? $result[0] : null;
    }

    /**
     * Gets content length.
     *
     * @return int|null
     */
    public function getContentLength()
    {
        $result = $this->getHeader('Content-Length');

        return $result ? (int) $result[0] : null;
    }
}