1 | <?php |
||
8 | class ServerWasPoked extends Event |
||
9 | { |
||
10 | use SerializesModels; |
||
11 | |||
12 | /** |
||
13 | * @var Device |
||
14 | */ |
||
15 | protected $device; |
||
16 | |||
17 | /** |
||
18 | * Create a new event instance. |
||
19 | * |
||
20 | * @param Device $device |
||
21 | */ |
||
22 | 4 | public function __construct(Device $device) |
|
27 | |||
28 | /** |
||
29 | * @return Device |
||
30 | */ |
||
31 | 4 | public function getDevice() |
|
35 | } |
||
36 |