1 2 3 4 5 6 7 8 9 10 11 12 13
<?php class Permission { public static function addGlobalTags(&$out, $location = null, array $tags = []): void { // In tests, just mark provided tags as true $out = []; foreach ($tags as $t) { $out[$t] = true; } } }