ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
SecretKey.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
39final 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:40