/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Console
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Console/ConsoleInputOption.php (8132B)
_name = $name;
$this->_short = $short;
$this->_help = $help;
$this->_boolean = $isBoolean;
$this->_choices = $choices;
$this->_multiple = $multiple;
$this->required = $required;
if ($isBoolean) {
$this->_default = (bool)$default;
} elseif ($default !== null) {
$this->_default = (string)$default;
}
if (strlen($this->_short) > 1) {
throw new ConsoleException(
sprintf('Short option "%s" is invalid, short options must be one letter.', $this->_short)
);
}
}
/**
* Get the value of the name attribute.
*
* @return string Value of this->_name.
*/
public function name(): string
{
return $this->_name;
}
/**
* Get the value of the short attribute.
*
* @return string Value of this->_short.
*/
public function short(): string
{
return (string)$this->_short;
}
/**
* Generate the help for this this option.
*
* @param int $width The width to make the name of the option.
* @return string
*/
public function help(int $width = 0): string
{
$default = $short = '';
if ($this->_default && $this->_default !== true) {
$default = sprintf('
(default: %s)', $this->_default);
}
if ($this->_choices) {
$default .= sprintf('
(choices: %s)', implode('|', $this->_choices));
}
if (strlen($this->_short) > 0) {
$short = ', -' . $this->_short;
}
$name = sprintf('--%s%s', $this->_name, $short);
if (strlen($name) < $width) {
$name = str_pad($name, $width, ' ');
}
$required = '';
if ($this->isRequired()) {
$required = '
(required)';
}
return sprintf('%s%s%s%s', $name, $this->_help, $default, $required);
}
/**
* Get the usage value for this option
*
* @return string
*/
public function usage(): string
{
$name = strlen($this->_short) > 0 ? '-' . $this->_short : '--' . $this->_name;
$default = '';
if ($this->_default !== null && !is_bool($this->_default) && strlen($this->_default) > 0) {
$default = ' ' . $this->_default;
}
if ($this->_choices) {
$default = ' ' . implode('|', $this->_choices);
}
$template = '[%s%s]';
if ($this->isRequired()) {
$template = '%s%s';
}
return sprintf($template, $name, $default);
}
/**
* Get the default value for this option
*
* @return string|bool|null
*/
public function defaultValue()
{
return $this->_default;
}
/**
* Check if this option is required
*
* @return bool
*/
public function isRequired(): bool
{
return $this->required;
}
/**
* Check if this option is a boolean option
*
* @return bool
*/
public function isBoolean(): bool
{
return $this->_boolean;
}
/**
* Check if this option accepts multiple values.
*
* @return bool
*/
public function acceptsMultiple(): bool
{
return $this->_multiple;
}
/**
* Check that a value is a valid choice for this option.
*
* @param string|bool $value The choice to validate.
* @return true
* @throws \Cake\Console\Exception\ConsoleException
*/
public function validChoice($value): bool
{
if (empty($this->_choices)) {
return true;
}
if (!in_array($value, $this->_choices, true)) {
throw new ConsoleException(
sprintf(
'"%s" is not a valid value for --%s. Please use one of "%s"',
(string)$value,
$this->_name,
implode(', ', $this->_choices)
)
);
}
return true;
}
/**
* Append the option's xml into the parent.
*
* @param \SimpleXMLElement $parent The parent element.
* @return \SimpleXMLElement The parent with this option appended.
*/
public function xml(SimpleXMLElement $parent): SimpleXMLElement
{
$option = $parent->addChild('option');
$option->addAttribute('name', '--' . $this->_name);
$short = '';
if (strlen($this->_short) > 0) {
$short = '-' . $this->_short;
}
$default = $this->_default;
if ($default === true) {
$default = 'true';
} elseif ($default === false) {
$default = 'false';
}
$option->addAttribute('short', $short);
$option->addAttribute('help', $this->_help);
$option->addAttribute('boolean', (string)(int)$this->_boolean);
$option->addAttribute('required', (string)(int)$this->required);
$option->addChild('default', (string)$default);
$choices = $option->addChild('choices');
foreach ($this->_choices as $valid) {
$choices->addChild('choice', $valid);
}
return $parent;
}
}