This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
misuzu-interim/src/HasRankInterface.php

7 lines
149 B
PHP

<?php
namespace Misuzu;
interface HasRankInterface {
public function getRank(): int;
public function hasAuthorityOver(self $other): bool;
}