mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-06 10:58:50 +00: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');
|
|
}
|
|
}
|