add readonly identifier

This commit is contained in:
Mark Magyar
2023-05-27 22:00:48 +02:00
parent b80431341e
commit 8bf962ecee
+1 -1
View File
@@ -8,7 +8,7 @@ use RobThree\Auth\Providers\Rng\IRNGProvider;
class TestRNGProvider implements IRNGProvider
{
public function __construct(private bool $isSecure = false)
public function __construct(private readonly bool $isSecure = false)
{
}