1 | <?php |
||
16 | final class RemoveCommentCommand |
||
17 | { |
||
18 | /** |
||
19 | * The comment to remove. |
||
20 | * |
||
21 | * @var \Gitamin\Models\Comment |
||
22 | */ |
||
23 | public $comment; |
||
24 | |||
25 | /** |
||
26 | * Create a new remove comment command instance. |
||
27 | * |
||
28 | * @param \Gitamin\Models\Comment $comment |
||
29 | * |
||
30 | * @return void |
||
|
|||
31 | */ |
||
32 | public function __construct(Comment $comment) |
||
36 | } |
||
37 |
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.