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\FactFinderNg\Dependency\Client;
class FactFinderNgToPriceProductStorageClientBridge implements FactFinderNgToPriceProductStorageClientInterface
{
* @var \Spryker\Client\PriceProductStorage\PriceProductStorageClientInterface
protected $priceProductStorageClient;
* @param \Spryker\Client\PriceProductStorage\PriceProductStorageClientInterface $priceProductStorageClient
public function __construct($priceProductStorageClient)
$this->priceProductStorageClient = $priceProductStorageClient;
}
* @param int $idProductAbstract
*
* @return \Generated\Shared\Transfer\PriceProductTransfer[]
public function getPriceProductAbstractTransfers(int $idProductAbstract): array
return $this->priceProductStorageClient->getPriceProductAbstractTransfers($idProductAbstract);