Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
39 | public function generate(): string |
||
40 | { |
||
41 | if ($this->hashSecret === null) { |
||
42 | throw new InvalidConfigException('Property `hashSecret` must be set!'); |
||
43 | } elseif ($this->hashAlgo === null) { |
||
44 | throw new InvalidConfigException('Property `hashAlgo` must be set!'); |
||
45 | } |
||
46 | |||
47 | return hash($this->hashAlgo, $this->hashSecret . $this->getData()); |
||
48 | } |
||
49 | |||
62 |