| 1 | <?php |
||
| 5 | class EmptyReply extends Reply |
||
| 6 | { |
||
| 7 | protected $defaults = ['text' => '']; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Constructor. |
||
| 11 | */ |
||
| 12 | 5 | public function __construct() |
|
| 16 | |||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | */ |
||
| 20 | 2 | public function offsetSet($offset, $value) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | 2 | public function toArray() |
|
| 32 | } |
||
| 33 |