Passed
Push — master ( 537d79...534bb6 )
by Mariano
01:14
created

ArrayToExpectationConverter::convertResponse()   A

Complexity

Conditions 5
Paths 3

Size

Total Lines 12
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 5
eloc 7
c 0
b 0
f 0
nc 3
nop 1
dl 0
loc 12
rs 9.6111
1
<?php
2
3
namespace Mcustiel\Phiremock\Common\Utils;
4
5
use Mcustiel\Phiremock\Domain\Expectation;
6
7
interface ArrayToExpectationConverter
8
{
9
    public function convert(array $expectationArray): Expectation;
10
}
11