| 1 | <?php |
||
| 14 | class BadgeUnlockEvent extends Event |
||
| 15 | { |
||
| 16 | /** @var BadgeCompletionInterface */ |
||
| 17 | protected $badgeCompletion; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param BadgeCompletionInterface $badgeCompletion |
||
| 21 | */ |
||
| 22 | public function __construct(BadgeCompletionInterface $badgeCompletion) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return BadgeCompletionInterface |
||
| 29 | */ |
||
| 30 | public function getBadgeCompletion() |
||
| 34 | } |
||
| 35 |