@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | $methodReturn = ''; |
128 | 128 | $reflectMethodReturnType = $reflectMethod->getReturnType(); |
129 | 129 | if ($reflectMethodReturnType) { |
130 | - $methodReturn = ': ' . $reflectMethodReturnType->getName(); |
|
130 | + $methodReturn = ': '.$reflectMethodReturnType->getName(); |
|
131 | 131 | } |
132 | 132 | // Method parameters |
133 | 133 | $methodParams = []; |
@@ -135,11 +135,11 @@ discard block |
||
135 | 135 | $paramType = ''; |
136 | 136 | $methodParamType = $methodParam->getType(); |
137 | 137 | if ($methodParamType) { |
138 | - $paramType = $methodParamType . ' '; |
|
138 | + $paramType = $methodParamType.' '; |
|
139 | 139 | } |
140 | - $methodParams[] = $paramType . '$' . $methodParam->getName(); |
|
140 | + $methodParams[] = $paramType.'$'.$methodParam->getName(); |
|
141 | 141 | } |
142 | - $methods[$reflectMethodName] = '(' . implode(', ', $methodParams) . ')' . $methodReturn; |
|
142 | + $methods[$reflectMethodName] = '('.implode(', ', $methodParams).')'.$methodReturn; |
|
143 | 143 | } |
144 | 144 | } |
145 | 145 | } catch (\ReflectionException $e) { |
@@ -156,11 +156,11 @@ discard block |
||
156 | 156 | |
157 | 157 | // Format the line output for each property |
158 | 158 | foreach ($properties as $key => $value) { |
159 | - $properties[$key] = ' * @property \\' . $value . ' $' . $key; |
|
159 | + $properties[$key] = ' * @property \\'.$value.' $'.$key; |
|
160 | 160 | } |
161 | 161 | // Format the line output for each method |
162 | 162 | foreach ($methods as $key => $value) { |
163 | - $methods[$key] = ' * @method ' . $key . $value; |
|
163 | + $methods[$key] = ' * @method '.$key.$value; |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | // Save the template with variable substitution |