1 | <?php |
||
16 | class ProjectWasQueuedEvent implements MomentEventInterface |
||
17 | { |
||
18 | /** |
||
19 | * The moment object. |
||
20 | * |
||
21 | * @var \Gitamin\Models\Moment |
||
22 | */ |
||
23 | public $moment; |
||
24 | |||
25 | /** |
||
26 | * Create a new moment was removed event instance. |
||
27 | * |
||
28 | * @param \Gitamin\Models\Moment $moment |
||
29 | * |
||
30 | * @return void |
||
|
|||
31 | */ |
||
32 | public function __construct(Moment $moment) |
||
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.