lithium\util\Inflector::_enclose PHP Method

_enclose() protected static method

Enclose a string for preg matching.
protected static _enclose ( string $string ) : string
$string string String to enclose
return string Enclosed string
    protected static function _enclose($string)
    {
        return '(?:' . $string . ')';
    }