Contao\CoreBundle\Image\PictureFactory::__construct PHP Метод

__construct() публичный Метод

Constructor.
public __construct ( Contao\Image\PictureGeneratorInterface $pictureGenerator, Contao\CoreBundle\Image\ImageFactoryInterface $imageFactory, Contao\CoreBundle\Framework\ContaoFrameworkInterface $framework, boolean $bypassCache, array $imagineOptions )
$pictureGenerator Contao\Image\PictureGeneratorInterface
$imageFactory Contao\CoreBundle\Image\ImageFactoryInterface
$framework Contao\CoreBundle\Framework\ContaoFrameworkInterface
$bypassCache boolean
$imagineOptions array
    public function __construct(PictureGeneratorInterface $pictureGenerator, ImageFactoryInterface $imageFactory, ContaoFrameworkInterface $framework, $bypassCache, array $imagineOptions)
    {
        $this->pictureGenerator = $pictureGenerator;
        $this->imageFactory = $imageFactory;
        $this->framework = $framework;
        $this->bypassCache = (bool) $bypassCache;
        $this->imagineOptions = $imagineOptions;
    }