1 | <?php |
||
7 | trait InteractsWithEarlyAccess |
||
8 | { |
||
9 | /** |
||
10 | * @return bool |
||
11 | */ |
||
12 | public function isEarlyAccessEnabled(): bool |
||
16 | |||
17 | /** |
||
18 | * @param array $data |
||
19 | * @return mixed |
||
20 | */ |
||
21 | public function saveBeacon(array $data = []) |
||
25 | |||
26 | /** |
||
27 | * @return mixed |
||
28 | */ |
||
29 | public function deleteBeacon() |
||
33 | |||
34 | /** |
||
35 | * @return mixed |
||
36 | */ |
||
37 | public function getBeaconDetails() |
||
41 | |||
42 | /** |
||
43 | * @return mixed |
||
44 | */ |
||
45 | public function getAllowedNetworks() |
||
49 | |||
50 | /** |
||
51 | * @param array $networks |
||
52 | * @return mixed |
||
53 | */ |
||
54 | public function addAllowedNetworksToBeacon(array $networks) |
||
58 | } |
||
59 |