mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
22 lines
312 B
PHP
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;
|
|
}
|
|
|
|
}
|