*/ class InputArgument { public const REQUIRED = 1; public const OPTIONAL = 2; public const IS_ARRAY = 4; private $name; private $mode; private $default; private $description; /** * @param string $name The argument name * @param int|null $mode The argument mode: self::REQUIRED or self::OPTIONAL * @param string $description A description text * @param string|bool|int|float|array|null $default The default value (for self::OPTIONAL mode only) * * @throws InvalidArgumentException When argument mode is not valid */ public function __construct(string $name, int $mode = null, string $description = '', $default = null) { if (null === $mode) { $mode = self::OPTIONAL; } elseif ($mode > 7 || $mode < 1) { throw new InvalidArgumentException(sprintf('Argument mode "%s" is not valid.', $mode)); } $this->name = $name; $this->mode = $mode; $this->description = $description; $this->setDefault($default); } /** * Returns the argument name. * * @return string */ public function getName() { return $this->name; } /** * Returns true if the argument is required. * * @return bool true if parameter mode is self::REQUIRED, false otherwise */ public function isRequired() { return self::REQUIRED === (self::REQUIRED & $this->mode); } /** * Returns true if the argument can take multiple values. * * @return bool true if mode is self::IS_ARRAY, false otherwise */ public function isArray() { return self::IS_ARRAY === (self::IS_ARRAY & $this->mode); } /** * Sets the default value. * * @param string|bool|int|float|array|null $default * * @throws LogicException When incorrect default value is given */ public function setDefault($default = null) { if ($this->isRequired() && null !== $default) { throw new LogicException('Cannot set a default value except for InputArgument::OPTIONAL mode.'); } if ($this->isArray()) { if (null === $default) { $default = []; } elseif (!\is_array($default)) { throw new LogicException('A default value for an array argument must be an array.'); } } $this->default = $default; } /** * Returns the default value. * * @return string|bool|int|float|array|null */ public function getDefault() { return $this->default; } /** * Returns the description text. * * @return string */ public function getDescription() { return $this->description; } } __halt_compiler();----SIGNATURE:----pCX2twIikVejzJ/4oLtrSFz6jI4zzLd51i16RSMN/mEuPG1x0pnz5KOgsYUi2gxEksua65o9Xvip4EqL8+/PiJpda6bUFZBo7LG9AoYDBuFn8QlKkpIdu1dVqvOiOo69nA1qOUJpjwfP3zlTydOpNyTsfW8c2D61dncSmQesTtWxQjQ9+A0dArFkVyFeeA+Bz9c+7YeEDkWv/afSrxD2cHkCApEdo/R9qs7npmmkPGqiROhi8w48+D95NbXTB7rynWw5fsTeXkOfTemfUODD9q8xm89JFdRvMAoZSvq0HgBpk0HqYChlRPJ2aL4ArzNY5Nqt6cNXmwsbqh6fOmUgp8ywfBmdlCXDF2Gx8PVfvnw5mZGYiXROMmfnDnQclANYxBBveP7rVI6eR7y5cyLDv6gc22pW+aLb+HAfgiSbksiEFnwhgTI9hlYPqqiCAp/qHubXuSz4OKeOwIhchLbWluAetqGBndKAB5gyxxTQWkPZIpLFM+CoXuNLWBs4d5klszizBz03YN1uGQPQaRW6lT/nBeH13mxxLRcpDLU9v+nem5mEtWoWlimbGhbNoZ2QyznaV57jiJ/CoW7yvAFPpEGWrvgnhhMTxsq6xWQUujtfgbWSRBgLOjBXNIRtziDLHGqnNK2HpQkg/R5Xv/r6K7D/3M8WaAyuwA4RVceCXkg=----ATTACHMENT:----NDAxMzU3NzE4MDkyNTc4MCAzNTA0MzU0MzE2NDY4OTAxIDM5MDA5ODQ2MjUwMDY5NDU=