| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 3.3332 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | 8 | public function getOption( $name ) { |
|
| 34 | 8 | if ( !is_string( $name ) ) { |
|
| 35 | throw new \InvalidArgumentException( 'Option name should be a string' ); |
||
| 36 | } |
||
| 37 | |||
| 38 | 8 | if ( !array_key_exists( $name, $this->options ) ) { |
|
| 39 | throw new \OutOfBoundsException( 'Tried to obtain option "' . $name . '" while it has not been set' ); |
||
| 40 | } |
||
| 41 | |||
| 42 | 8 | return $this->options[$name]; |
|
| 43 | } |
||
| 44 | |||
| 61 | } |