| Conditions | 4 |
| Paths | 4 |
| Total Lines | 15 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function params($name = null) |
||
| 33 | { |
||
| 34 | if(is_null($name)){ |
||
| 35 | return $this->params; |
||
| 36 | } |
||
| 37 | |||
| 38 | if (!isset($this->params[$name])) { |
||
| 39 | return null; |
||
| 40 | } |
||
| 41 | |||
| 42 | if (is_string($this->params[$name])) { |
||
| 43 | return urldecode($this->params[$name]); |
||
| 44 | } |
||
| 45 | |||
| 46 | return $this->params[$name]; |
||
| 47 | } |
||
| 65 |