Phly\Http\Response::getReasonPhrase PHP Method

getReasonPhrase() public method

public getReasonPhrase ( )
    public function getReasonPhrase()
    {
        if (!$this->reasonPhrase && isset($this->phrases[$this->statusCode])) {
            $this->reasonPhrase = $this->phrases[$this->statusCode];
        }
        return $this->reasonPhrase;
    }