vendor/symfony/maker-bundle/src/InputAwareMakerInterface.php line 26

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony MakerBundle package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Bundle\MakerBundle;
  11. use Symfony\Component\Console\Input\InputInterface;
  12. /**
  13.  * Lets the configureDependencies method access to the command's input.
  14.  *
  15.  * @author Kévin Dunglas <dunglas@gmail.com>
  16.  */
  17. interface InputAwareMakerInterface extends MakerInterface
  18. {
  19.     /**
  20.      * {@inheritdoc}
  21.      */
  22.     public function configureDependencies(DependencyBuilder $dependenciesInputInterface $input null);
  23. }