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