@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | $i = 0; |
83 | 83 | |
84 | 84 | $code = |
85 | - 'namespace ' . $class->namespace . ';' |
|
85 | + 'namespace ' . $class->namespace . ';' |
|
86 | 86 | . 'class ' . $class->classname . ' ' |
87 | 87 | . 'extends \\' . $originalClass |
88 | 88 | . '{'; |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | } |
119 | 119 | |
120 | 120 | return |
121 | - ($method->scope === 'static' ? 'static ' : '') |
|
121 | + ($method->scope === 'static' ? 'static ' : '') |
|
122 | 122 | . 'function ' . $method->name |
123 | 123 | . '(' . implode(',', $params) . '){' |
124 | 124 | . '__generic_' . $method->name |
@@ -62,7 +62,7 @@ |
||
62 | 62 | public function __toString() |
63 | 63 | { |
64 | 64 | return |
65 | - ($this->namespace ? $this->namespace . '\\' : '') |
|
65 | + ($this->namespace ? $this->namespace . '\\' : '') |
|
66 | 66 | . $this->classname; |
67 | 67 | } |
68 | 68 |