| 1 | <?php |
||
| 10 | abstract class UncompletedOperationException extends AuthorizationException |
||
| 11 | { |
||
| 12 | private $grantable; |
||
| 13 | |||
| 14 | public function __construct(Grantable $grantable) |
||
| 19 | |||
| 20 | abstract protected function getOperationName(): string; |
||
| 21 | |||
| 22 | public function getGrantable(): Grantable |
||
| 26 | |||
| 27 | private function makeMessage(Grantable $grantable): string |
||
| 31 | } |
||
| 32 |