jaroslavtyc/drd-plus-codes

View on GitHub
Codes/Armaments/ProtectiveArmamentCode.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1); 

namespace DrdPlus\Codes\Armaments;

interface ProtectiveArmamentCode extends ArmamentCode
{
    /**
     * @return bool
     */
    public function isArmor(): bool;

    /**
     * @return bool
     */
    public function isShield(): bool;
}