コード例 #1
0
ファイル: Response.php プロジェクト: yeaha/owl-mvc
 public function getReasonPhrase()
 {
     if ($this->reason_phrase) {
         return $this->reason_phrase;
     }
     return \Owl\Http::getStatusPhrase($this->code);
 }
コード例 #2
0
ファイル: Exception.php プロジェクト: yeaha/owl-mvc
 public static function factory($status, \Throwable $previous = null)
 {
     return new self(\Owl\Http::getStatusPhrase($status), $status, $previous);
 }