Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
symfony
/
maker-bundle
/
src
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/symfony/maker-bundle/src/InputConfiguration.php
<?php /* * This file is part of the Symfony MakerBundle package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\MakerBundle; final class InputConfiguration { private $nonInteractiveArguments = []; /** * Call in MakerInterface::configureCommand() to disable the automatic interactive * prompt for an argument. * * @param string $argumentName */ public function setArgumentAsNonInteractive(string $argumentName) { $this->nonInteractiveArguments[] = $argumentName; } public function getNonInteractiveArguments(): array { return $this->nonInteractiveArguments; } }