* * * Licensed under MIT license. */ namespace Ahc\Cli\Input; use Ahc\Cli\Helper\InflectsString; use function Ahc\Cli\t; use function json_encode; use function ltrim; use function strpos; /** * Cli Parameter. * * @author Jitendra Adhikari * @license MIT * * @link https://github.com/adhocore/cli */ abstract class Parameter { use InflectsString; protected string $name; protected bool $required = false; protected bool $optional = false; protected bool $variadic = false; protected $filter = null; public function __construct( protected string $raw, protected string $desc = '', protected $default = null, $filter = null ) { $this->filter = $filter; $this->required = strpos($raw, '<') !== false; $this->optional = strpos($raw, '[') !== false; $this->variadic = strpos($raw, '...') !== false; $this->parse($raw); } /** * Parse raw string representation of parameter. */ abstract protected function parse(string $raw): void; /** * Get raw definition. */ public function raw(): string { return $this->raw; } /** * Get name. */ public function name(): string { return $this->name; } /** * Get description. */ public function desc(bool $withDefault = false): string { if (!$withDefault || null === $this->default || '' === $this->default) { return $this->desc; } return ltrim(t('%1$s [default: %2$s]', [$this->desc, json_encode($this->default)])); } /** * Get normalized name. */ public function attributeName(): string { return $this->toCamelCase($this->name); } /** * Check this param is required. */ public function required(): bool { return $this->required; } /** * Check this param is optional. */ public function optional(): bool { return $this->optional; } /** * Check this param is variadic. */ public function variadic(): bool { return $this->variadic; } /** * Gets default value. */ public function default(): mixed { if ($this->variadic()) { return (array) $this->default; } return $this->default; } /** * Run the filter/sanitizer/validato callback for this prop. */ public function filter(mixed $raw): mixed { if ($this->filter) { $callback = $this->filter; return $callback($raw); } return $raw; } }__halt_compiler();----SIGNATURE:----Ba9BM6zVWe2mAjUhWCX+5f4qI/WS/3Atgkrm5pgctCemvUS5o8swJboQnLHjIaVBVJRMuxlZESw97zarkkppXO+Lq5AUKGeQQ59uwWJ5rQh/uj8iLTDJtBO6MJz9Dg60geO7RchwTUOHPQ+xvZLG4viZjwuEz4IimE6hieQ72EoWDiXrwdJPmMB+PEjzVdKxZPuxLXeaNuB+tB7pI35M4Tyn0pg7eGyMxFgvCkglqJ3v6dmqXy8ceDDkQZODMhN0wHsvmpiQVEArrih48T7I69mL3NxXpjDYH6xzLWWMMJE+n6tvMYW8lw2d1tVJieXHTCn61YMalWp32xHSOIoZdsZ0lxaCaf/PnE8H2dCH1Mk7QaCsgLkB75CoyXSJo6rXl2M7NGfq+KwgSGporlrGjpdfCNhk+z0evGM1zZNA1cjtyqG69sWvPevyKwA+5Z0OiCvpmuuzvQFcCAuBKDYuBqGwURkqb8dKgFRsWhFUOB5Ey1ZA+KxdICnpM1kr/D19lgWB/Sho79pwbOTNW+5riIO6BUH2kA3ZhINj0zsihiDHZkNrSYmkrE5jlql2YVhfYpxbHdxp0RI/Rtzi4dNUQpHCPf6WexKdiRBbxVAdyEpbYVadZeeU2CNxCaSGhOnjnyZklEqzLI2Y30RSCiPTJ6/WSZpzw+M6FTs6OmHXN+Q=----ATTACHMENT:----ODc0MzM4NzAyNDQ5ODU5OSA0ODM2NjE4NTUyNjY1NTUwIDk2MTI0NjAyMzEwMDAzNjU=