Rename CLI classes

This commit is contained in:
Frederic Guillot
2016-04-12 21:26:17 -04:00
parent 2a74ed6e63
commit af7027ea31
12 changed files with 31 additions and 31 deletions

View File

@@ -25,7 +25,7 @@ use Symfony\Component\Console\Command\Command;
* @property \Kanboard\Model\UserNotificationFilter $userNotificationFilter
* @property \Symfony\Component\EventDispatcher\EventDispatcher $dispatcher
*/
abstract class Base extends Command
abstract class BaseCommand extends Command
{
/**
* Container instance

View File

@@ -7,7 +7,7 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\NullOutput;
class Cronjob extends Base
class CronjobCommand extends BaseCommand
{
private $commands = array(
'projects:daily-stats',

View File

@@ -7,7 +7,7 @@ use RecursiveDirectoryIterator;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class LocaleComparator extends Base
class LocaleComparatorCommand extends BaseCommand
{
const REF_LOCALE = 'fr_FR';

View File

@@ -6,7 +6,7 @@ use DirectoryIterator;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class LocaleSync extends Base
class LocaleSyncCommand extends BaseCommand
{
const REF_LOCALE = 'fr_FR';

View File

@@ -7,7 +7,7 @@ use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ProjectDailyColumnStatsExport extends Base
class ProjectDailyColumnStatsExportCommand extends BaseCommand
{
protected function configure()
{

View File

@@ -6,7 +6,7 @@ use Kanboard\Model\Project;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ProjectDailyStatsCalculation extends Base
class ProjectDailyStatsCalculationCommand extends BaseCommand
{
protected function configure()
{

View File

@@ -7,7 +7,7 @@ use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class SubtaskExport extends Base
class SubtaskExportCommand extends BaseCommand
{
protected function configure()
{

View File

@@ -7,7 +7,7 @@ use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class TaskExport extends Base
class TaskExportCommand extends BaseCommand
{
protected function configure()
{

View File

@@ -8,7 +8,7 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class TaskOverdueNotification extends Base
class TaskOverdueNotificationCommand extends BaseCommand
{
protected function configure()
{

View File

@@ -7,7 +7,7 @@ use Symfony\Component\Console\Output\OutputInterface;
use Kanboard\Model\Task;
use Kanboard\Event\TaskListEvent;
class TaskTrigger extends Base
class TaskTriggerCommand extends BaseCommand
{
protected function configure()
{

View File

@@ -7,7 +7,7 @@ use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class TransitionExport extends Base
class TransitionExportCommand extends BaseCommand
{
protected function configure()
{