for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Ray.ValidateModule package
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*/
namespace Ray\Validation;
use Aura\Filter\FilterFactory;
use Ray\Di\ProviderInterface;
class ValueFilterProvider implements ProviderInterface
{
* {@inheritdoc}
public function get()
return (new FilterFactory())->newValueFilter();
}