for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Particle.
*
* @link http://github.com/particle-php for the canonical source repository
* @copyright Copyright (c) 2005-2015 Particle (http://particle-php.com)
* @license https://github.com/particle-php/Filter/blob/master/LICENSE New BSD License
*/
namespace Particle\Filter\FilterRule;
use Particle\Filter\FilterRule;
* Class Remove
* @package Particle\Filter\FilterRule
class Remove extends FilterRule
{
* Returns an empty filter result so the value can be removed.
* @param mixed $value
* @return string
public function filter($value)
return $this->setEmpty();
}