Conditions | 3 |
Paths | 4 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
21 | 4 | public function handle($context, $options) |
|
22 | { |
||
23 | 4 | $options = isset($options['hash']) ? $options['hash'] : []; |
|
24 | 4 | $relative = isset($options['relative']) ? $options['relative'] : false; |
|
25 | 4 | $method = 'get' . ucfirst($this->type); |
|
26 | 4 | return $this->$method($context, $options, $relative); |
|
27 | } |
||
28 | |||
39 |