add interface IAuthenticationRequired #4

Merged
bence merged 1 commits from feature/interface-for-authentication-required into master 2023-04-16 14:54:23 +00:00

View File

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