Updating Symfony lib and dependencies: forgot a few files + composer.lock

This commit is contained in:
Molkobain
2019-11-18 18:08:40 +01:00
parent c76cccd2e7
commit 1636f9839c
23 changed files with 1252 additions and 144 deletions

View File

@@ -0,0 +1,21 @@
<?php
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class FooHiddenCommand extends Command
{
protected function configure()
{
$this
->setName('foo:hidden')
->setAliases(['afoohidden'])
->setHidden(true)
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
}
}