for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
namespace SprykerEco\Client\Easycredit\Dependency\Client;
use Spryker\Shared\Kernel\Transfer\TransferInterface;
class EasycreditToZedRequestClientBridge implements EasycreditToZedRequestClientInterface
{
* @var \Spryker\Client\ZedRequest\ZedRequestClientInterface
protected $zedRequestClient;
* @param \Spryker\Client\ZedRequest\ZedRequestClientInterface $zedRequestClient
public function __construct($zedRequestClient)
$this->zedRequestClient = $zedRequestClient;
}
* @param string $url
* @param \Spryker\Shared\Kernel\Transfer\TransferInterface $object
* @param array|int|null $requestOptions
*
* @return \Spryker\Shared\Kernel\Transfer\TransferInterface
public function call($url, TransferInterface $object, $requestOptions = null): TransferInterface
return $this->zedRequestClient->call($url, $object, $requestOptions);