| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | public function processDatamap_preProcessFieldArray(&$incomingFieldArray, $table, $id, $obj) |
||
| 24 | { |
||
| 25 | if ($table != 'tx_tagger_domain_model_tag') { |
||
| 26 | return; |
||
| 27 | } |
||
| 28 | |||
| 29 | if ($incomingFieldArray['slug'] == '') { |
||
| 30 | $incomingFieldArray['slug'] = $this->createSlug($incomingFieldArray['title']); |
||
| 31 | } |
||
| 32 | } |
||
| 33 | |||
| 69 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.