mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
28 lines
377 B
PHP
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;
|
|
}
|
|
}
|