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