8 lines
149 B
PHP
8 lines
149 B
PHP
|
<?php
|
||
|
namespace Misuzu;
|
||
|
|
||
|
interface HasRankInterface {
|
||
|
public function getRank(): int;
|
||
|
public function hasAuthorityOver(self $other): bool;
|
||
|
}
|