Files
Commerce/lib/mollie/src/Idempotency/FakeIdempotencyKeyGenerator.php
“VeLiTi” 6f1cc27ec4 Initial commit
2025-01-30 11:43:37 +01:00

19 lines
380 B
PHP

<?php
declare (strict_types=1);
namespace Mollie\Api\Idempotency;
class FakeIdempotencyKeyGenerator implements \Mollie\Api\Idempotency\IdempotencyKeyGeneratorContract
{
/** @var string */
private $fakeKey;
public function setFakeKey($fakeKey)
{
$this->fakeKey = $fakeKey;
}
public function generate()
{
return $this->fakeKey;
}
}