summaryrefslogtreecommitdiff
path: root/kanboard
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-04-12 21:26:17 -0400
committerFrederic Guillot <fred@kanboard.net>2016-04-12 21:26:17 -0400
commitaf7027ea31a691e2eea6d813f6aa3cf08f8b9d0a (patch)
tree8524395f06b30f812dca5cd68dd15fa09e3a2410 /kanboard
parent2a74ed6e63b05627928e1dd6eeb67d824f4c1903 (diff)
Rename CLI classes
Diffstat (limited to 'kanboard')
-rwxr-xr-xkanboard40
1 files changed, 20 insertions, 20 deletions
diff --git a/kanboard b/kanboard
index 5046181d..8ac49d79 100755
--- a/kanboard
+++ b/kanboard
@@ -5,28 +5,28 @@ require __DIR__.'/app/common.php';
use Symfony\Component\Console\Application;
use Symfony\Component\EventDispatcher\Event;
-use Kanboard\Console\TaskOverdueNotification;
-use Kanboard\Console\SubtaskExport;
-use Kanboard\Console\TaskExport;
-use Kanboard\Console\ProjectDailyStatsCalculation;
-use Kanboard\Console\ProjectDailyColumnStatsExport;
-use Kanboard\Console\TransitionExport;
-use Kanboard\Console\LocaleSync;
-use Kanboard\Console\LocaleComparator;
-use Kanboard\Console\TaskTrigger;
-use Kanboard\Console\Cronjob;
+use Kanboard\Console\TaskOverdueNotificationCommand;
+use Kanboard\Console\SubtaskExportCommand;
+use Kanboard\Console\TaskExportCommand;
+use Kanboard\Console\ProjectDailyStatsCalculationCommand;
+use Kanboard\Console\ProjectDailyColumnStatsExportCommand;
+use Kanboard\Console\TransitionExportCommand;
+use Kanboard\Console\LocaleSyncCommand;
+use Kanboard\Console\LocaleComparatorCommand;
+use Kanboard\Console\TaskTriggerCommand;
+use Kanboard\Console\CronjobCommand;
$container['dispatcher']->dispatch('app.bootstrap', new Event);
$application = new Application('Kanboard', APP_VERSION);
-$application->add(new TaskOverdueNotification($container));
-$application->add(new SubtaskExport($container));
-$application->add(new TaskExport($container));
-$application->add(new ProjectDailyStatsCalculation($container));
-$application->add(new ProjectDailyColumnStatsExport($container));
-$application->add(new TransitionExport($container));
-$application->add(new LocaleSync($container));
-$application->add(new LocaleComparator($container));
-$application->add(new TaskTrigger($container));
-$application->add(new Cronjob($container));
+$application->add(new TaskOverdueNotificationCommand($container));
+$application->add(new SubtaskExportCommand($container));
+$application->add(new TaskExportCommand($container));
+$application->add(new ProjectDailyStatsCalculationCommand($container));
+$application->add(new ProjectDailyColumnStatsExportCommand($container));
+$application->add(new TransitionExportCommand($container));
+$application->add(new LocaleSyncCommand($container));
+$application->add(new LocaleComparatorCommand($container));
+$application->add(new TaskTriggerCommand($container));
+$application->add(new CronjobCommand($container));
$application->run();