Files
php-flasher/Stamp/HopsStamp.php
T
Khoubza Younes 9fcb224750 init fix tests
2020-12-06 18:10:44 +01:00

28 lines
429 B
PHP

<?php
namespace Flasher\Prime\Stamp;
final class HopsStamp implements StampInterface, \Flasher\Prime\Stamp\OrderableStampInterface
{
/**
* @var int
*/
private $amount;
/**
* @param int $amount
*/
public function __construct($amount)
{
$this->amount = $amount;
}
/**
* @return int
*/
public function getAmount()
{
return $this->amount;
}
}