misuzu/src/HasRankInterface.php

8 lines
149 B
PHP
Raw Normal View History

2020-06-04 18:48:01 +00:00
<?php
namespace Misuzu;
interface HasRankInterface {
public function getRank(): int;
public function HasAuthorityOver(self $other): bool;
}