mirror of
https://github.com/e107inc/e107.git
synced 2025-10-11 21:15:09 +02:00
12 lines
177 B
PHP
12 lines
177 B
PHP
<?php
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
class BarBucCommand extends Command
|
|
{
|
|
protected function configure()
|
|
{
|
|
$this->setName('bar:buc');
|
|
}
|
|
}
|