1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Mcustiel\Phiremock\Common\Utils\V1; |
4
|
|
|
|
5
|
|
|
class Factory |
6
|
|
|
{ |
7
|
|
|
public function createArrayToExpectationConverter(): ArrayToExpectationConverter |
8
|
|
|
{ |
9
|
|
|
return new ArrayToExpectationConverter( |
10
|
|
|
$this->createArrayToRequestConditionConverter(), |
11
|
|
|
$this->createArrayToResponseConverterLocator() |
12
|
|
|
); |
13
|
|
|
} |
14
|
|
|
|
15
|
|
|
public function createArrayToStateConditionsConverter(): ArrayToStateConditionsConverter |
16
|
|
|
{ |
17
|
|
|
return new ArrayToStateConditionsConverter(); |
18
|
|
|
} |
19
|
|
|
|
20
|
|
|
public function createArrayToResponseConverterLocator(): ArrayToResponseConverterLocator |
21
|
|
|
{ |
22
|
|
|
return new ArrayToResponseConverterLocator($this); |
23
|
|
|
} |
24
|
|
|
|
25
|
|
|
public function createArrayToHttpResponseConverter(): ArrayToHttpResponseConverter |
26
|
|
|
{ |
27
|
|
|
return new ArrayToHttpResponseConverter(); |
28
|
|
|
} |
29
|
|
|
|
30
|
|
|
public function createArrayToProxyResponseConverter(): ArrayToProxyResponseConverter |
31
|
|
|
{ |
32
|
|
|
return new ArrayToProxyResponseConverter(); |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
public function createArrayToRequestConditionConverter(): ArrayToRequestConditionConverter |
36
|
|
|
{ |
37
|
|
|
return new ArrayToRequestConditionConverter(); |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
public function createExpectationToArrayConverter(): ExpectationToArrayConverter |
41
|
|
|
{ |
42
|
|
|
return new ExpectationToArrayConverter( |
43
|
|
|
$this->createRequestConditionToArrayConverter(), |
44
|
|
|
$this->createResponseToArrayConverterLocator() |
45
|
|
|
); |
46
|
|
|
} |
47
|
|
|
|
48
|
|
|
public function createHttpResponseToArrayConverter(): HttpResponseToArrayConverter |
49
|
|
|
{ |
50
|
|
|
return new HttpResponseToArrayConverter(); |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
public function createProxyResponseToArrayConverter(): ProxyResponseToArrayConverter |
54
|
|
|
{ |
55
|
|
|
return new ProxyResponseToArrayConverter(); |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
public function createResponseToArrayConverterLocator(): ResponseToArrayConverterLocator |
59
|
|
|
{ |
60
|
|
|
return new ResponseToArrayConverterLocator($this); |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
public function createRequestConditionToArrayConverter(): RequestConditionToArrayConverter |
64
|
|
|
{ |
65
|
|
|
return new RequestConditionToArrayConverter(); |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
public function createArrayToScenarioStateInfoConverter(): ArrayToScenarioStateInfoConverter |
69
|
|
|
{ |
70
|
|
|
return new ArrayToScenarioStateInfoConverter(); |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
public function createScenarioStateInfoToArrayConverter(): ScenarioStateInfoToArrayConverter |
74
|
|
|
{ |
75
|
|
|
return new ScenarioStateInfoToArrayConverter(); |
76
|
|
|
} |
77
|
|
|
} |
78
|
|
|
|