Skip to content

Commit

Permalink
Classnames fixed [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorkmaz committed Nov 30, 2018
1 parent 8222e66 commit 63f0026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Output\OutputInterface;

class OrdinaryCommand extends Command
class GreetingCommand extends Command
{
/**
* @var PrintService
Expand Down Expand Up @@ -126,7 +126,7 @@ $container = new ServiceManager(
);
$container->setService(
'commands', [
MyConsoleApplication\Command\OrdinaryCommand::class
MyConsoleApplication\Command\GreetingCommand::class
]
);
$container->setService('config', ['greeting' => 'Dear']);
Expand Down

0 comments on commit 63f0026

Please sign in to comment.