22 lines
418 B
PHP
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);
|
|
}
|
|
}
|