| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | function init() |
||
| 10 | { |
||
| 11 | $this->addField(new CoordinateField('width', 120)); |
||
| 12 | $this->addField(new CoordinateField('height', null)); |
||
| 13 | $this->addField(new SelectField('fit', array('inside', 'fill', 'outside'))); |
||
| 14 | $this->addField(new SelectField('scale', array('any', 'down', 'up'))); |
||
| 15 | } |
||
| 27 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.