jaroslavtyc/drd-plus-rolls-on

View on GitHub
src/Traps/ShortRollOnStrength.php

Summary

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

namespace DrdPlus\RollsOn\Traps;

use Granam\DiceRolls\Templates\Rolls\Roll1d6;
use DrdPlus\BaseProperties\Strength;
use DrdPlus\BaseProperties\Property;

class ShortRollOnStrength extends ShortRollOnProperty
{

    /**
     * @param Strength $strength
     * @param Roll1d6 $roll1d6
     */
    public function __construct(Strength $strength, Roll1d6 $roll1d6)
    {
        parent::__construct($strength, $roll1d6);
    }

    /**
     * @return Strength|Property
     */
    public function getStrength(): Strength
    {
        return $this->getProperty();
    }
}