Files
kupshop/bundles/KupShop/FeedsBundle/Wrapper/PhotoWrapperFactory.php
2025-08-02 16:30:27 +02:00

22 lines
418 B
PHP

<?php
namespace KupShop\FeedsBundle\Wrapper;
use KupShop\KupShopBundle\Util\System\UrlFinder;
class PhotoWrapperFactory implements IWrapperFactory
{
/** @var UrlFinder */
protected $urlFinder;
public function __construct(UrlFinder $urlFinder)
{
$this->urlFinder = $urlFinder;
}
public function create(): BaseWrapper
{
return new PhotoWrapper($this->urlFinder);
}
}