0 follower

Final Class Yiisoft\Access\AllowAll

InheritanceYiisoft\Access\AllowAll
ImplementsYiisoft\Access\AccessCheckerInterface

Allow all access.

Public Methods

Hide inherited methods

Method Description Defined By
userHasPermission() Yiisoft\Access\AllowAll

Method Details

Hide inherited methods

userHasPermission() public method

public boolean userHasPermission ( integer|string|\Stringable|null $userId, string $permissionName, array $parameters = [] )
$userId integer|string|\Stringable|null
$permissionName string
$parameters array

                public function userHasPermission(int|string|Stringable|null $userId, string $permissionName, array $parameters = []): bool
{
    return true;
}