Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
liip
/
imagine-bundle
/
Model
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/liip/imagine-bundle/Model/Binary.php
<?php /* * This file is part of the `liip/LiipImagineBundle` project. * * (c) https://github.com/liip/LiipImagineBundle/graphs/contributors * * For the full copyright and license information, please view the LICENSE.md * file that was distributed with this source code. */ namespace Liip\ImagineBundle\Model; use Liip\ImagineBundle\Binary\BinaryInterface; class Binary implements BinaryInterface { /** * @var string */ protected $content; /** * @var string */ protected $mimeType; /** * @var string */ protected $format; /** * @param string $content * @param string $mimeType * @param string $format */ public function __construct($content, $mimeType, $format = null) { $this->content = $content; $this->mimeType = $mimeType; $this->format = $format; } /** * @return string */ public function getContent() { return $this->content; } /** * @return string */ public function getMimeType() { return $this->mimeType; } /** * @return string */ public function getFormat() { return $this->format; } }