accounts/api/components/Tokens/EncryptedValue.php
2019-12-04 21:10:15 +03:00

22 lines
312 B
PHP

<?php
declare(strict_types=1);
namespace api\components\Tokens;
class EncryptedValue {
/**
* @var string
*/
private $value;
public function __construct(string $value) {
$this->value = $value;
}
public function getValue(): string {
return $this->value;
}
}