X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fconsole%2FInput%2FInput.php;fp=vendor%2Fsymfony%2Fconsole%2FInput%2FInput.php;h=fa5644d1fdbaf58d037e1122e4855ae4428559e4;hp=41413252194f5596c4ac8dfa713e01ca4f79d3fa;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hpb=74df008bdbb3a11eeea356744f39b802369bda3c diff --git a/vendor/symfony/console/Input/Input.php b/vendor/symfony/console/Input/Input.php index 414132521..fa5644d1f 100644 --- a/vendor/symfony/console/Input/Input.php +++ b/vendor/symfony/console/Input/Input.php @@ -72,7 +72,7 @@ abstract class Input implements InputInterface, StreamableInputInterface return !array_key_exists($argument, $givenArguments) && $definition->getArgument($argument)->isRequired(); }); - if (count($missingArguments) > 0) { + if (\count($missingArguments) > 0) { throw new RuntimeException(sprintf('Not enough arguments (missing: "%s").', implode(', ', $missingArguments))); } }