| Conditions | 3 |
| Paths | 4 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | 43 | public function toString() |
|
| 41 | { |
||
| 42 | 43 | $string = ''; |
|
| 43 | 43 | foreach ($this->data as $key => $value) { |
|
| 44 | 43 | $encode = rawurlencode($value); |
|
| 45 | 43 | $string .= "$key=$encode&"; |
|
| 46 | 43 | } |
|
| 47 | |||
| 48 | 43 | if (0 < count($this->data)) { |
|
| 49 | 43 | $string = substr($string, 0, -1); |
|
| 50 | 43 | } |
|
| 51 | |||
| 52 | 43 | return $string; |
|
| 53 | } |
||
| 65 |