smalos / nubuilder_dev

Unused variable in the closure use PHP-W1039
Anti-pattern
Major
1 occurrence in this check
Anonymous function has an unused use $count
178
179    if ($nuDevSelectQueryRunParameterised) {
180        $args = [];
181        $sqlWithHK = preg_replace_callback('/#(\'?)(.*?)(\'?)#/', function ($match) use (&$count, &$args) {182            $args[] = $match[2];
183            return '?';
184        }, $sqlWithHK);