vendor/shopware/core/Content/Media/MediaType/ImageType.php line 8

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Content\Media\MediaType;
  3. use Shopware\Core\Framework\Log\Package;
  4. #[Package('content')]
  5. class ImageType extends MediaType
  6. {
  7.     public const ANIMATED 'animated';
  8.     public const TRANSPARENT 'transparent';
  9.     public const VECTOR_GRAPHIC 'vectorGraphic';
  10.     public const ICON 'image/x-icon';
  11.     protected $name 'IMAGE';
  12. }