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 FactFinderNgToProductStorageClientBridge implements FactFinderNgToProductStorageClientInterface
{
* @var \Spryker\Client\ProductStorage\ProductStorageClientInterface
protected $productStorageClient;
* @param \Spryker\Client\ProductStorage\ProductStorageClientInterface $productStorageClient
public function __construct($productStorageClient)
$this->productStorageClient = $productStorageClient;
}
* @param string $mappingType
* @param string $identifier
* @param string $localeName
*
* @return array|null
public function findProductAbstractStorageDataByMapping(string $mappingType, string $identifier, string $localeName): ?array
return $this->productStorageClient->findProductAbstractStorageDataByMapping($mappingType, $identifier, $localeName);