Completed
Branch master (c822e5)
by Joao
02:56 queued 52s
created

ClientShowException::handleHeader()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 1
nc 1
1
<?php
2
3
namespace ByJG\RestServer\Exception;
4
5
abstract class ClientShowException extends \Exception
6
{
7
    //put your code here
8
9
    protected function sendHeader($status, $description)
10
    {
11
        header("HTTP/1.0 $status $description", true, $status);
12
    }
13
14
    abstract public function handleHeader();
15
}
16