add interface IAuthenticationRequired
All checks were successful
soko-web/pipeline/pr-master This commit looks good

This commit is contained in:
Bence Pőcze 2023-04-16 16:43:53 +02:00
parent 4af7ae3521
commit 298a1e34ac
Signed by: bence
GPG Key ID: DC5BD6E95A333E6D

View File

@ -0,0 +1,6 @@
<?php namespace SokoWeb\Interfaces\Authentication;
interface IAuthenticationRequired
{
public function isAuthenticationRequired(): bool;
}