MetaModels\Filter\Setting\CustomSql::parseAndAddSecureInsertTagAsParameter PHP Метод

parseAndAddSecureInsertTagAsParameter() публичный Метод

Replace all insert tags in the query string.
public parseAndAddSecureInsertTagAsParameter ( string $arrMatch ) : string
$arrMatch string The match from the preg_replace call.
Результат string
    public function parseAndAddSecureInsertTagAsParameter($arrMatch)
    {
        $this->addParameter($this->parseInsertTagsInternal('{{' . $arrMatch[1] . '}}'));
        return '?';
    }