1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-11 21:15:09 +02:00
Files
php-e107/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php
2018-02-06 03:18:31 -06:00

12 lines
177 B
PHP

<?php
use Symfony\Component\Console\Command\Command;
class BarBucCommand extends Command
{
protected function configure()
{
$this->setName('bar:buc');
}
}