diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-07-06 21:34:57 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-07-06 21:34:57 -0400 |
| commit | 08259d4f206438095308749b8cc2abbe629137da (patch) | |
| tree | db535ab6fdb7375a33444f3d796bb725469c36ef /app/Console/ProjectDailySummaryExport.php | |
| parent | 663a1c20e6ba0fbf65afcb43f0f48d34f21dcb53 (diff) | |
Add lead and cycle time for projects
Diffstat (limited to 'app/Console/ProjectDailySummaryExport.php')
| -rw-r--r-- | app/Console/ProjectDailySummaryExport.php | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/app/Console/ProjectDailySummaryExport.php b/app/Console/ProjectDailySummaryExport.php deleted file mode 100644 index 07841d52..00000000 --- a/app/Console/ProjectDailySummaryExport.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php - -namespace Console; - -use Core\Tool; -use Symfony\Component\Console\Input\InputArgument; -use Symfony\Component\Console\Input\InputInterface; -use Symfony\Component\Console\Output\OutputInterface; - -class ProjectDailySummaryExport extends Base -{ - protected function configure() - { - $this - ->setName('export:daily-project-summary') - ->setDescription('Daily project summary CSV export (number of tasks per column and per day)') - ->addArgument('project_id', InputArgument::REQUIRED, 'Project id') - ->addArgument('start_date', InputArgument::REQUIRED, 'Start date (YYYY-MM-DD)') - ->addArgument('end_date', InputArgument::REQUIRED, 'End date (YYYY-MM-DD)'); - } - - protected function execute(InputInterface $input, OutputInterface $output) - { - $data = $this->projectDailySummary->getAggregatedMetrics( - $input->getArgument('project_id'), - $input->getArgument('start_date'), - $input->getArgument('end_date') - ); - - if (is_array($data)) { - Tool::csv($data); - } - } -} |
