Your IP : 216.73.217.30


Current Path : /var/www/magento.test.indacotrentino.com/www/vendor/laminas/laminas-filter/src/
Upload File :
Current File : /var/www/magento.test.indacotrentino.com/www/vendor/laminas/laminas-filter/src/FilterInterface.php

<?php

declare(strict_types=1);

namespace Laminas\Filter;

interface FilterInterface
{
    /**
     * Returns the result of filtering $value
     *
     * @param  mixed $value
     * @throws Exception\RuntimeException If filtering $value is impossible.
     * @return mixed
     */
    public function filter($value);
}