(string $folder, string $key)
| 761 | } |
| 762 | |
| 763 | private static function listFor(string $folder, string $key): array |
| 764 | { |
| 765 | $acl = self::$cache ?? self::loadFresh(); |
| 766 | $f = $acl['folders'][$folder] ?? null; |
| 767 | return is_array($f[$key] ?? null) ? $f[$key] : []; |
| 768 | } |
| 769 | |
| 770 | private static function inheritMap(string $folder): array |
| 771 | { |
no test coverage detected