mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-22 11:09:11 -04:00
12 lines
226 B
PHP
12 lines
226 B
PHP
<?php
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
class FooSameCaseUppercaseCommand extends Command
|
|
{
|
|
protected function configure()
|
|
{
|
|
$this->setName('foo:BAR')->setDescription('foo:BAR command');
|
|
}
|
|
}
|