| 1 | <?php |
||
| 19 | abstract class Command implements CommandInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var bool |
||
| 23 | */ |
||
| 24 | protected $isMultiLine; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Constructor. |
||
| 28 | * |
||
| 29 | * @param bool $isMultiLine a bool indicating the response is multiline or not |
||
| 30 | */ |
||
| 31 | 78 | public function __construct($isMultiLine = false) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | 13 | public function isMultiLine() |
|
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | 12 | public function isCompressed() |
|
| 51 | } |
||
| 52 |