@@ -95,12 +95,12 @@ |
||
95 | 95 | $paramString = ''; |
96 | 96 | $identation = str_repeat(' ', 4); |
97 | 97 | foreach ($methodParameters as $methodParameter) { |
98 | - $paramString .= "\n{$identation}" . $methodParameter; |
|
98 | + $paramString .= "\n{$identation}".$methodParameter; |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | return sprintf( |
102 | 102 | "%sMethod [ <user%s%s%s>%s%s%s %s method %s ] {\n @@ %s %d - %d{$paramFormat}{$returnFormat}\n}\n", |
103 | - $this->getDocComment() ? $this->getDocComment() . "\n" : '', |
|
103 | + $this->getDocComment() ? $this->getDocComment()."\n" : '', |
|
104 | 104 | $prototype ? ", overwrites {$prototypeClass}, prototype {$prototypeClass}" : '', |
105 | 105 | $this->isConstructor() ? ', ctor' : '', |
106 | 106 | $this->isDestructor() ? ', dtor' : '', |