| 1 | <?php | ||
| 6 | class Hello extends BaseCommand implements CommandInterface | ||
| 7 | { | ||
| 8 | /** | ||
| 9 | * Tells the argument types for this command | ||
| 10 | * | ||
| 11 | * @var int | ||
| 12 | */ | ||
| 13 | protected $argumentsType = self::ARGUMENTS_TYPE_EMPTY; | ||
| 14 | |||
| 15 | /** | ||
| 16 | * Tells which class handles the response | ||
| 17 | * | ||
| 18 | * @var int | ||
| 19 | */ | ||
| 20 | protected $responseHandler = HelloResponse::class; | ||
| 21 | |||
| 22 | /** | ||
| 23 | * Get command | ||
| 24 | * | ||
| 25 | * @return string Command | ||
| 26 | */ | ||
| 27 | public function getCommand() | ||
| 31 | } |