| 1 | <?php |
||
| 9 | class CommentClient |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Comments |
||
| 13 | * @var string[] |
||
| 14 | */ |
||
| 15 | private $comments = []; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * CommentClient constructor. |
||
| 19 | * |
||
| 20 | * @param array $comments |
||
| 21 | */ |
||
| 22 | public function __construct(array $comments) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Export |
||
| 29 | * |
||
| 30 | * @return string[] |
||
| 31 | */ |
||
| 32 | public function export() |
||
| 36 | } |
||
| 37 |