eZ\Publish\Core\Search\Legacy\Content\Common\Gateway\CriterionHandler\FieldValue\Handler::lowerCase PHP Method

lowerCase() protected method

Downcases a given string using string transformation processor.
protected lowerCase ( string $string ) : string
$string string
return string
    protected function lowerCase($string)
    {
        return $this->transformationProcessor->transformByGroup($string, 'lowercase');
    }