Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function providerGetAccessibleSubQuery(): array |
||
30 | { |
||
31 | $all = [8000, 8001, 8002, 8003, 8004, 8005]; |
||
32 | |||
33 | return [ |
||
34 | ['anonymous', []], |
||
35 | ['bookingonly', []], |
||
36 | ['individual', []], |
||
37 | ['member', [8000, 8002, 8003, 8004]], |
||
38 | ['responsible', $all], |
||
39 | ['administrator', $all], |
||
40 | ]; |
||
43 |