1 | <?php |
||
16 | class CommentWasAddedEvent implements CommentEventInterface |
||
17 | { |
||
18 | /** |
||
19 | * The comment that has been reported. |
||
20 | * |
||
21 | * @var \Gitamin\Models\Comment |
||
22 | */ |
||
23 | public $comment; |
||
24 | |||
25 | /** |
||
26 | * Create a new comment has reported event instance. |
||
27 | * |
||
28 | * @return void |
||
|
|||
29 | */ |
||
30 | public function __construct(Comment $comment) |
||
34 | } |
||
35 |
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.