| 1 | <?php |
||
| 10 | class SubscriptionEvent extends Event |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var SubscriptionInterface |
||
| 14 | */ |
||
| 15 | protected $subscription; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * SubscriptionEvent constructor. |
||
| 19 | * |
||
| 20 | * @param SubscriptionInterface $subscription |
||
| 21 | */ |
||
| 22 | public function __construct(SubscriptionInterface $subscription) |
||
| 26 | |||
| 27 | public function getSubscription(): SubscriptionInterface |
||
| 31 | } |
||
| 32 |