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
/
Events
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/liip/imagine-bundle/Events/CacheResolveEvent.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\Events; use Symfony\Component\EventDispatcher\Event; class CacheResolveEvent extends Event { /** * Resource path. * * @var string */ protected $path; /** * Filter name. * * @var string */ protected $filter; /** * Resource url. * * @var null */ protected $url; /** * Init default event state. * * @param string $path * @param string $filter * @param null|string $url */ public function __construct($path, $filter, $url = null) { $this->path = $path; $this->filter = $filter; $this->url = $url; } /** * Sets resource path. * * @param $path */ public function setPath($path) { $this->path = $path; } /** * Returns resource path. * * @return string */ public function getPath() { return $this->path; } /** * Sets filter name. * * @param $filter */ public function setFilter($filter) { $this->filter = $filter; } /** * Returns filter name. * * @return string */ public function getFilter() { return $this->filter; } /** * Sets resource url. * * @param $url */ public function setUrl($url) { $this->url = $url; } /** * Returns resource url. */ public function getUrl() { return $this->url; } }