Conditions | 5 |
Paths | 6 |
Total Lines | 16 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 5.0488 |
Changes | 0 |
1 | <?php |
||
19 | 1 | public function get($option, $defaultValue = null) |
|
20 | { |
||
21 | 1 | if ('limit' == $option) { |
|
22 | 1 | if (-1 == $this->options[$option]) { |
|
23 | 1 | $this->options[$option] = PHP_INT_MAX; |
|
24 | } |
||
25 | } |
||
26 | |||
27 | if ( |
||
28 | 1 | !isset($this->options[$option]) |
|
29 | 1 | || empty($this->options[$option]) |
|
30 | ) { |
||
31 | return $defaultValue; |
||
32 | } |
||
33 | |||
34 | 1 | return $this->options[$option]; |
|
35 | } |
||
67 |