mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-04 05:59:55 +09: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');
|
|
}
|
|
}
|