jaroslavtyc/drd-plus-professions

View on GitHub
src/Thief.php

Summary

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

namespace DrdPlus\Professions;

use DrdPlus\Codes\Properties\PropertyCode;

class Thief extends Profession
{
    /**
     * @return Thief|Profession
     */
    public static function getIt(): Thief
    {
        return parent::getIt();
    }

    /**
     * @return array|string[]
     */
    public function getPrimaryProperties(): array
    {
        return [PropertyCode::AGILITY, PropertyCode::KNACK];
    }
}