| 1 | <?php | ||
| 17 | abstract class Command implements CommandInterface | ||
| 18 | { | ||
| 19 | /** | ||
| 20 | * @var bool | ||
| 21 | */ | ||
| 22 | protected $isMultiLine; | ||
| 23 | |||
| 24 | /** | ||
| 25 | * Constructor. | ||
| 26 | * | ||
| 27 | * @param bool $isMultiLine a bool indicating the response is multiline or not | ||
| 28 | */ | ||
| 29 | 100 | public function __construct($isMultiLine = false) | |
| 33 | |||
| 34 | /** | ||
| 35 |      * {@inheritdoc} | ||
| 36 | */ | ||
| 37 | 14 | public function isMultiLine() | |
| 41 | |||
| 42 | /** | ||
| 43 |      * {@inheritdoc} | ||
| 44 | */ | ||
| 45 | 13 | public function isCompressed() | |
| 49 | } | ||
| 50 |