Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class EasycreditToZedRequestClientBridge implements EasycreditToZedRequestClientInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var \Spryker\Client\ZedRequest\ZedRequestClientInterface |
||
16 | */ |
||
17 | protected $zedRequestClient; |
||
18 | |||
19 | /** |
||
20 | * @param \Spryker\Client\ZedRequest\ZedRequestClientInterface $zedRequestClient |
||
21 | */ |
||
22 | public function __construct($zedRequestClient) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @param string $url |
||
29 | * @param \Spryker\Shared\Kernel\Transfer\TransferInterface $object |
||
30 | * @param array|int|null $requestOptions |
||
31 | * |
||
32 | * @return \Spryker\Shared\Kernel\Transfer\TransferInterface |
||
33 | */ |
||
34 | public function call($url, TransferInterface $object, $requestOptions = null): TransferInterface |
||
39 |