Completed
Push — master ( 8ac024...c822e5 )
by Joao
02:14
created

ClientShowException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 11
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A sendHeader() 0 4 1
handleHeader() 0 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