Conditions | 5 |
Paths | 5 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | private function generateSpace() |
||
40 | { |
||
41 | if ('space' == $this->kind) { |
||
42 | foreach ($this->whitesSpace($this->chars) as $space) { |
||
43 | $this->spaces .= $space; |
||
44 | } |
||
45 | } elseif ('escaped' == $this->kind) { |
||
46 | foreach ($this->whitesSpaceEscape($this->chars) as $space) { |
||
47 | $this->spaces .= $space; |
||
48 | } |
||
87 | } |