function _coder_drush_xml_output_footer in Coder 6.2
1 call to _coder_drush_xml_output_footer()
File
- ./
coder.drush.inc, line 269 - Command line utility for coder.
Code
function _coder_drush_xml_output_footer($type = 'xml') {
switch ($type) {
case 'checkstyle':
drush_print('</checkstyle>');
break;
case 'xml':
default:
drush_print('</coderreview>');
break;
}
}