| Conditions | 3 |
| Paths | 4 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 53 | public function getRelations($object, ClassMetadataInterface $classMetadata) |
||
| 54 | { |
||
| 55 | $relations = array(); |
||
| 56 | |||
| 57 | if (null !== $this->help) { |
||
| 58 | $relations[] = $this->help; |
||
| 59 | } |
||
| 60 | |||
| 61 | if (null !== $this->describes) { |
||
| 62 | $relations[] = $this->describes; |
||
| 63 | } |
||
| 64 | |||
| 65 | return $relations; |
||
| 66 | } |
||
| 67 | |||
| 78 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.