for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Access;
use Stringable;
/**
* Deny all access.
*/
final class DenyAll implements AccessCheckerInterface
{
public function userHasPermission(int|string|Stringable|null $userId, string $permissionName, array $parameters = []): bool
return false;
}