12 lines
226 B
PHP
12 lines
226 B
PHP
<?php
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
class FooSameCaseLowercaseCommand extends Command
|
|
{
|
|
protected function configure()
|
|
{
|
|
$this->setName('foo:bar')->setDescription('foo:bar command');
|
|
}
|
|
}
|