Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
39 | public function code(int $indentation = 0) : string |
||
40 | { |
||
41 | // Add parameters comments |
||
42 | foreach ($this->arguments as $argument => $type) { |
||
43 | $this->defParam($argument, $type, $this->descriptions[$argument] ?? ''); |
||
44 | } |
||
45 | |||
46 | return parent::code($indentation); |
||
47 | } |
||
48 | } |
||
49 |