| 1 | <?php |
||
| 8 | class SignatureParts |
||
| 9 | { |
||
| 10 | /** @var string */ |
||
| 11 | protected $signature; |
||
| 12 | |||
| 13 | public function __construct(string $signature) |
||
| 21 | |||
| 22 | public function getSlashCommandName(): string |
||
| 26 | |||
| 27 | public function getHandlerName(): string |
||
| 31 | |||
| 32 | public function getSignatureWithoutCommandName(): string |
||
| 36 | |||
| 37 | public function getArgumentsAndOptions(): string |
||
| 41 | } |
||
| 42 |