| 1 | <?php |
||
| 14 | class ListNewsGroupsCommand extends Command implements CommandInterface |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Constructor |
||
| 19 | * |
||
| 20 | */ |
||
| 21 | public function __construct() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function execute() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function getExpectedResponseCodes() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Return the list of Newsgroups as an array |
||
| 46 | * |
||
| 47 | * @param MultiLineReponse |
||
| 48 | * |
||
| 49 | * @return array |
||
| 50 | */ |
||
| 51 | public function onListNewsGroups(MultiLineResponse $response) |
||
| 55 | } |
||
| 56 |