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

ExpectationToArrayConverter   A

Complexity

Total Complexity 13

Size/Duplication

Total Lines 90
Duplicated Lines 0 %

Importance

Changes 5
Bugs 0 Features 0
Metric Value
eloc 38
c 5
b 0
f 0
dl 0
loc 90
rs 10
wmc 13
1
<?php
2
3
namespace Mcustiel\Phiremock\Common\Utils;
4
5
use Mcustiel\Phiremock\Domain\Expectation;
6
7
interface ExpectationToArrayConverter
8
{
9
    public function convert(Expectation $expectation): array;
10
}
11