Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function providerGetAccessibleSubQuery(): array |
||
27 | { |
||
28 | // Nobody can see all messages for now, even administrator, because it's useless |
||
29 | $all = [11001, 11002]; |
||
|
|||
30 | |||
31 | return [ |
||
32 | ['anonymous', []], |
||
33 | ['bookingonly', []], |
||
34 | ['individual', []], |
||
35 | ['member', [11001]], |
||
36 | ['responsible', []], |
||
37 | ['administrator', []], |
||
38 | ]; |
||
41 |