/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Console
NameSizeModeActions
Command/-0755rm
Exception/-0755rm
Arguments.php38580644editdlrm
BaseCommand.php80360644editdlrm
Command.php1760644editdlrm
CommandCollection.php72110644editdlrm
CommandCollectionAwareInterface.php10220644editdlrm
CommandFactory.php14310644editdlrm
CommandFactoryInterface.php9960644editdlrm
CommandInterface.php16980644editdlrm
CommandRunner.php125360644editdlrm
CommandScanner.php48280644editdlrm
composer.json11730644editdlrm
ConsoleErrorHandler.php2340644editdlrm
ConsoleInput.php28750644editdlrm
ConsoleInputArgument.php54920644editdlrm
ConsoleInputOption.php81320644editdlrm
ConsoleInputSubcommand.php39040644editdlrm
ConsoleIo.php206420644editdlrm
ConsoleOptionParser.php303260644editdlrm
ConsoleOutput.php97170644editdlrm
Helper.php16750644editdlrm
HelperRegistry.php33460644editdlrm
HelpFormatter.php72160644editdlrm
README.md33210644editdlrm
Shell.php293530644editdlrm
ShellDispatcher.php122240644editdlrm
TaskRegistry.php30050644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Console/Arguments.php (3858B)
args = $args; $this->options = $options; $this->argNames = $argNames; } /** * Get all positional arguments. * * @return string[] */ public function getArguments(): array { return $this->args; } /** * Get positional arguments by index. * * @param int $index The argument index to access. * @return string|null The argument value or null */ public function getArgumentAt(int $index): ?string { if ($this->hasArgumentAt($index)) { return $this->args[$index]; } return null; } /** * Check if a positional argument exists * * @param int $index The argument index to check. * @return bool */ public function hasArgumentAt(int $index): bool { return isset($this->args[$index]); } /** * Check if a positional argument exists by name * * @param string $name The argument name to check. * @return bool */ public function hasArgument(string $name): bool { $offset = array_search($name, $this->argNames, true); if ($offset === false) { return false; } return isset($this->args[$offset]); } /** * Check if a positional argument exists by name * * @param string $name The argument name to check. * @return string|null */ public function getArgument(string $name): ?string { $offset = array_search($name, $this->argNames, true); if ($offset === false || !isset($this->args[$offset])) { return null; } return $this->args[$offset]; } /** * Get an array of all the options * * @return array */ public function getOptions(): array { return $this->options; } /** * Get an option's value or null * * @param string $name The name of the option to check. * @return string|int|bool|null The option value or null. */ public function getOption(string $name) { if (isset($this->options[$name])) { return $this->options[$name]; } return null; } /** * Check if an option is defined and not null. * * @param string $name The name of the option to check. * @return bool */ public function hasOption(string $name): bool { return isset($this->options[$name]); } }