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 Prepend
* @package Particle\Filter\FilterRule
class Prepend extends FilterRule
{
* @var string
protected $prepend;
* Set text to prepend
* @param string $prepend
public function __construct($prepend)
$this->prepend = $prepend;
}
* Prepend the provided text to the given value
* @param mixed $value
* @return string
public function filter($value)
return $this->prepend . $value;