mirror of
https://github.com/e107inc/e107.git
synced 2025-10-11 13:04:28 +02:00
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');
|
|
}
|
|
}
|