Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
52 | public function code($indentation = 0) : string |
||
53 | { |
||
54 | $this->generatedCode .= $this->indentation($indentation) |
||
55 | .$this->visibility |
||
56 | .' ' |
||
57 | .($this->isStatic ? 'static ' : '') |
||
58 | .'$' |
||
59 | .$this->name |
||
60 | .';'; |
||
61 | |||
62 | return $this->generatedCode; |
||
63 | } |
||
64 | } |
||
65 |