Files
php-flasher/Stamp/DelayStamp.php
T
2020-12-06 14:04:54 +01:00

28 lines
377 B
PHP

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