for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Zed\ArvatoRss\Dependency\Facade;
class ArvatoRssToStoreBridge implements ArvatoRssToStoreInterface
{
* @var \Spryker\Zed\Store\Business\StoreFacadeInterface
protected $storeFacade;
* @param \Spryker\Zed\Store\Business\StoreFacadeInterface $storeFacade
public function __construct($storeFacade)
$this->storeFacade = $storeFacade;
}
* @return \Generated\Shared\Transfer\StoreTransfer
public function getCurrentStore()
return $this->storeFacade->getCurrentStore();