Permission->getChildren() no longer returns by-ref

This commit is contained in:
Dylan K. Taylor 2020-11-27 20:31:59 +00:00
parent aa67c4894f
commit ecbc4e9433

View File

@ -77,7 +77,7 @@ class Permission{
* @return bool[]
* @phpstan-return array<string, bool>
*/
public function &getChildren() : array{
public function getChildren() : array{
return $this->children;
}