public function DbSelectBracesSniff::registerFunctionNames in Coder 8.2
Same name and namespace in other branches
- 8.3 coder_sniffer/DrupalPractice/Sniffs/FunctionCalls/DbSelectBracesSniff.php \DrupalPractice\Sniffs\FunctionCalls\DbSelectBracesSniff::registerFunctionNames()
- 8.3.x coder_sniffer/DrupalPractice/Sniffs/FunctionCalls/DbSelectBracesSniff.php \DrupalPractice\Sniffs\FunctionCalls\DbSelectBracesSniff::registerFunctionNames()
Returns an array of function names this test wants to listen for.
Return value
array
File
- coder_sniffer/
DrupalPractice/ Sniffs/ FunctionCalls/ DbSelectBracesSniff.php, line 31
Class
- DbSelectBracesSniff
- Check that db_select() calls do not use {} braces for the table name.
Namespace
DrupalPractice\Sniffs\FunctionCallsCode
public function registerFunctionNames() {
return array(
'db_select',
);
}