1 | <?php |
||
7 | class SignatureConfig |
||
8 | { |
||
9 | private $replayProtectionEnabled; |
||
10 | |||
11 | private $algorithm; |
||
12 | |||
13 | private $secret; |
||
14 | |||
15 | public function __construct($replayProtectionEnabled, $algorithm, $secret) |
||
21 | |||
22 | public function isReplayProtectionEnabled() |
||
26 | |||
27 | public function getAlgorithm() |
||
31 | |||
32 | public function getSecret() |
||
36 | } |
||
37 |