ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SigningKey.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 final class SigningKey
29 {
30  public function __construct(
31  private string $signing_key
32  ) {
33  }
34 
35  public function get(): string
36  {
37  return $this->signing_key;
38  }
39 }