Files
php-flasher/Stamp/ReplayStamp.php
T
2020-12-02 00:57:12 +01:00

28 lines
383 B
PHP

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