7 lines
116 B
PHP
7 lines
116 B
PHP
<?php namespace MapGuesser\Interfaces\Authorization;
|
|
|
|
interface ISecured
|
|
{
|
|
public function authorize(): bool;
|
|
}
|