| 1 | <?php |
||
| 16 | class ProjectNamespaceWasRemovedEvent implements ProjectNamespaceEventInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * The project team that was removed. |
||
| 20 | * |
||
| 21 | * @var \Gitamin\Models\ProjectNamespace |
||
| 22 | */ |
||
| 23 | public $projectNamespace; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Create a new project team was removed event instance. |
||
| 27 | * |
||
| 28 | * @return void |
||
|
|
|||
| 29 | */ |
||
| 30 | public function __construct(ProjectNamespace $projectNamespace) |
||
| 34 | } |
||
| 35 |
Adding a
@returnannotation 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.