| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2.032 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | 1 | public function getNetworkHdPrefixConfig(NetworkInterface $network) |
|
| 36 | { |
||
| 37 | 1 | $class = get_class($network); |
|
| 38 | 1 | if (!array_key_exists($class, $this->networkConfigs)) { |
|
| 39 | throw new \InvalidArgumentException("Network not registered with GlobalHdPrefixConfig"); |
||
| 40 | } |
||
| 41 | |||
| 42 | 1 | return $this->networkConfigs[$class]; |
|
| 43 | } |
||
| 44 | } |
||
| 45 |