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