mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +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;
 | |
|     }
 | |
| 
 | |
| }
 |