UnexpectedFormatException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 8
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace GoetasWebservices\SoapServices\SoapClient\Exception;
4
5
use Psr\Http\Message\RequestInterface;
6
use Psr\Http\Message\ResponseInterface;
7
8
class UnexpectedFormatException extends ServerException
9
{
10 2
    public function __construct(ResponseInterface $response, RequestInterface $request, $message)
11
    {
12 2
        parent::__construct($response, $request);
13 2
        $this->message = $message;
14 2
    }
15
}
16