Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class Facade extends AbstractFacade |
||
14 | { |
||
15 | public function getCachedSeed(): string |
||
16 | { |
||
17 | return $this->getFactory()->getCachedSeed(); |
||
18 | } |
||
19 | |||
20 | public function getRandomSeed(): string |
||
21 | { |
||
22 | return $this->getFactory()->getRandomSeed(); |
||
23 | } |
||
24 | |||
25 | public function getRandomStringValue(): StringValue |
||
28 | } |
||
29 | } |
||
30 |