| 1 | <?php |
||
| 8 | class NotificationClicked extends AbstractEvent |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var Notification |
||
| 12 | */ |
||
| 13 | public $notification; |
||
| 14 | /** |
||
| 15 | * @var int |
||
| 16 | */ |
||
| 17 | public $number; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Create a new NotificationSent. |
||
| 21 | * |
||
| 22 | * @param Notification $notification |
||
| 23 | * @param int $number |
||
| 24 | */ |
||
| 25 | 1 | public function __construct(Notification $notification, $number = 1) |
|
| 30 | } |
||
| 31 |