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

ArrayToExpectationConverter   A

Complexity

Total Complexity 17

Size/Duplication

Total Lines 98
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 47
c 1
b 0
f 0
dl 0
loc 98
rs 10
wmc 17
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