ILIAS  trunk Revision v12.0_alpha-399-g579a087ced2
SigningKey.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
28final 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}