| 1 | <?php |
||
| 24 | abstract class AbstractCmd implements CmdInterface { |
||
| 25 | |||
| 26 | protected $server; |
||
| 27 | protected $args; |
||
| 28 | |||
| 29 | |||
| 30 | /** |
||
| 31 | * @brief Creates an instance of a concrete command. |
||
| 32 | * @param[in] Server $server An instance of Server class. |
||
| 33 | * @param[in] array $args An array of arguments. |
||
| 34 | */ |
||
| 35 | public function __construct(Server $server, $args) { |
||
| 39 | |||
| 40 | } |