for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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\Config;
final class Filter implements FilterInterface
{
* @var string
private $name;
* @var array
private $options = [];
* @return string
public function getName(): string
return $this->name;
}
* @param string $name
public function setName(string $name): void
$this->name = $name;
* @return array
public function getOptions(): array
return $this->options;
* @param array $options
public function setOptions(array $options): void
$this->options = $options;