diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-08-15 21:13:37 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-08-15 21:13:37 -0700 |
commit | 498408d5075cf0060e0f53e58261e6537e0f6080 (patch) | |
tree | 46f187f95dfe70a54d601406c5eb68f94979960a /kanboard | |
parent | 9eeded33f68872515954a2fc177fcb47a9273ae9 (diff) |
Update documentation
Diffstat (limited to 'kanboard')
-rwxr-xr-x | kanboard | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ $cli = new Cli; $cli->register('help', function() { echo 'Kanboard command line interface'.PHP_EOL.'==============================='.PHP_EOL.PHP_EOL; echo '- Task export to stdout (CSV format): '.$GLOBALS['argv'][0].' export-csv <project_id> <start_date> <end_date>'.PHP_EOL; - echo '- Send notifications for tasks due: '.$GLOBALS['argv'][0].' send-notifications-tasks-due'.PHP_EOL; + echo '- Send notifications for due tasks: '.$GLOBALS['argv'][0].' send-notifications-due-tasks'.PHP_EOL; }); // CSV Export @@ -51,7 +51,7 @@ $cli->register('export-csv', function() use ($cli, $registry) { }); // Send notification for tasks due -$cli->register('send-notifications-tasks-due', function() use ($cli, $registry) { +$cli->register('send-notifications-due-tasks', function() use ($cli, $registry) { $notificationModel = new Notification($registry); $taskModel = new Task($registry); |