MetaModels\Filter\Setting\CustomSql::parseAndAddSecureInsertTagAsParameter PHP Method

parseAndAddSecureInsertTagAsParameter() public method

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