Skip to content

Commit

Permalink
Fix a warning when generating reports
Browse files Browse the repository at this point in the history
  • Loading branch information
gggeek committed Sep 9, 2016
1 parent 45c8c24 commit 04e3cb5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/php/report.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@
}
$cli->output();

$cli->output( reportGenerator::getCSV( $report ) );
$reportFormatter = new reportGenerator();
$cli->output( $reportFormatter->getCSV( $report ) );
}

$script->shutdown();
Expand Down

0 comments on commit 04e3cb5

Please sign in to comment.