| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class Factory extends AbstractFactory |
||
| 11 | { |
||
| 12 | public function getCachedSeed(): string |
||
| 15 | } |
||
| 16 | |||
| 17 | public function getRandomSeed(): string |
||
| 18 | { |
||
| 19 | return $this->getProvidedDependency(DependencyProvider::RANDOM_SEED); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getRandomStringValue(): StringValue |
||
| 25 | } |
||
| 26 | } |
||
| 27 |