ILIAS  trunk Revision v11.0_alpha-1731-gff9cd7e2bd3
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SecretKey.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
39 final class SecretKey
40 {
41  public function __construct(
42  private string $secret_key
43  ) {
44  }
45 
46  public function get(): string
47  {
48  return $this->secret_key;
49  }
50 }
Signatures are secured by the secret_key.
Definition: SecretKey.php:39