Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | protected function customiseFunction(): void |
||
14 | { |
||
15 | $parameters = \str_repeat(', %s', $this->getParameterCount() - 1); |
||
16 | $this->setFunctionPrototype($this->getFunctionName().'(%s'.$parameters.')'); |
||
17 | |||
18 | for ($i = 0; $i < $this->getParameterCount(); $i++) { |
||
19 | $this->addNodeMapping('StringPrimary'); |
||
20 | } |
||
23 |