We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d134965 commit a7c94efCopy full SHA for a7c94ef
src/entities/Role.php
@@ -53,7 +53,7 @@ public function setParent(?Role $parent): void
53
$this->parent = $parent;
54
}
55
56
- public function getPermissions(): array
+ public function getPermissions()
57
{
58
return $this->permissions;
59
src/interfaces/RoleInterface.php
@@ -14,6 +14,6 @@ interface RoleInterface
14
15
public function getParent(): ?RoleInterface;
16
public function getCode(): string;
17
- public function getPermissions(): array;
+ public function getPermissions();
18
public function isHasAllPermissions(): bool;
19
0 commit comments