1 | <?php declare(strict_types = 1); |
||
10 | class BaseEvent implements Event |
||
11 | { |
||
12 | protected $id; |
||
13 | |||
14 | protected $type; |
||
15 | |||
16 | protected $information; |
||
17 | |||
18 | protected $ring; |
||
19 | |||
20 | protected $sound; |
||
21 | |||
22 | 23 | public function __construct(int $id, Type $type, Information $information, Ring $ring, BaseSound $sound) { |
|
29 | |||
30 | 21 | public function getAsArray(): array |
|
40 | } |
||
41 |