summaryrefslogtreecommitdiffstats
path: root/tests/Stubs/Permission.php
blob: b567954803ba8848f9ab5d5e929a812466aa9e8c (plain) (blame)
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;
		}
	}
}