| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 3 |
| Ratio | 37.5 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | protected function _getMessage(){ |
||
| 58 | $parameters=$this->getParameters(); |
||
| 59 | $message=$this->mergeMessages(); |
||
| 60 | View Code Duplication | foreach ($parameters as $param){ |
|
|
1 ignored issue
–
show
|
|||
| 61 | $message=str_replace("{".$param."}", $this->$param, $message); |
||
| 62 | } |
||
| 63 | return $message; |
||
| 64 | } |
||
| 65 | |||
| 68 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.