You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-05 12:32:55 +01:00
28 lines
383 B
PHP
28 lines
383 B
PHP
<?php
|
|
|
|
namespace Flasher\Prime\Stamp;
|
|
|
|
final class HopsStamp implements StampInterface
|
|
{
|
|
/**
|
|
* @var int
|
|
*/
|
|
private $amount;
|
|
|
|
/**
|
|
* @param int $amount
|
|
*/
|
|
public function __construct($amount)
|
|
{
|
|
$this->amount = $amount;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getAmount()
|
|
{
|
|
return $this->amount;
|
|
}
|
|
}
|