summaryrefslogtreecommitdiff
path: root/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php
blob: 52b619e821ed021894d70e4a1da91aa70df4a85f (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

use Symfony\Component\Console\Command\Command;

class BarBucCommand extends Command
{
    protected function configure()
    {
        $this->setName('bar:buc');
    }
}