| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Comodojo\Zip\Traits; |
||
| 23 | trait CommentTrait { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Set the comment for the current archive |
||
| 27 | * |
||
| 28 | * @return ZipInterface |
||
| 29 | */ |
||
| 30 | public function setComment(string $comment): ZipInterface { |
||
| 35 | |||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Get the current zip archive comment |
||
| 40 | * |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | public function getComment(): ?string { |
||
| 50 |