for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SWP\Bundle\CoreBundle\Factory;
use SWP\Bundle\ContentBundle\Factory\ORM\ImageRenditionFactoryInterface;
use SWP\Bundle\ContentBundle\Provider\ORM\ArticleMediaAssetProviderInterface;
use SWP\Component\Storage\Factory\FactoryInterface;
use SWP\Bundle\ContentBundle\Factory\ORM\MediaFactory as BaseMediaFactory;
final class MediaFactory extends BaseMediaFactory
{
public function __construct(
ArticleMediaAssetProviderInterface $articleMediaAssetProvider,
FactoryInterface $factory,
ImageRenditionFactoryInterface $imageRenditionFactory
) {
parent::__construct($articleMediaAssetProvider, $factory, $imageRenditionFactory);
}