Compare commits

...

2 Commits

Author SHA1 Message Date
014a548096
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
2023-04-16 16:54:22 +02:00
298a1e34ac
add interface IAuthenticationRequired
All checks were successful
soko-web/pipeline/pr-master This commit looks good
2023-04-16 16:43:53 +02:00

View File

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