Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
Update DisableCommand and EnableCommand class names
Browse files Browse the repository at this point in the history
  • Loading branch information
panlatent committed Apr 11, 2017
1 parent 0641287 commit 52450a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions bin/site-cli
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

use Panlatent\SiteCli\Commands\ConfigCommand;
use Panlatent\SiteCli\Commands\ListServerCommand;
use Panlatent\SiteCli\Commands\SiteDisableCommand;
use Panlatent\SiteCli\Commands\SiteEnableCommand;
use Panlatent\SiteCli\Commands\DisableCommand;
use Panlatent\SiteCli\Commands\EnableCommand;
use Panlatent\SiteCli\Commands\ListGroupCommand;
use Panlatent\SiteCli\Commands\ListSiteCommand;
use Symfony\Component\Console\Application;
Expand All @@ -33,8 +33,8 @@ $app = new Application('site-cli', '1.0.0');
$app->add(new ConfigCommand());
$app->add(new ListGroupCommand());
$app->add(new ListSiteCommand());
$app->add(new SiteEnableCommand());
$app->add(new SiteDisableCommand());
$app->add(new EnableCommand());
$app->add(new DisableCommand());
$app->add(new ListServerCommand());

$app->run();
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

class SiteDisableCommand extends Command
class DisableCommand extends Command
{
protected function configure()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

class SiteEnableCommand extends Command
class EnableCommand extends Command
{
protected function configure()
{
Expand Down

0 comments on commit 52450a0

Please sign in to comment.