Merge pull request 'add interface IAuthenticationRequired' (#4) from feature/interface-for-authentication-required into master
All checks were successful
soko-web/pipeline/head This commit looks good

Reviewed-on: #4
This commit is contained in:
Bence Pőcze 2023-04-16 16:54:22 +02:00
commit 014a548096
Signed by: Gitea
GPG Key ID: 7B89B83EED9AD2C6

View File

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