You are here

function _coder_drush_xml_output_footer in Coder 6.2

1 call to _coder_drush_xml_output_footer()
coder_drush_review in ./coder.drush.inc

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;
  }
}