ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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