add interface IAuthenticationRequired #4

Merged
bence merged 1 commits from feature/interface-for-authentication-required into master 2023-04-16 16:54:23 +02:00
Showing only changes of commit 298a1e34ac - Show all commits

View File

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