Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | function init() |
||
10 | { |
||
11 | $this->addField(new CoordinateField('width', '100%+30')); |
||
12 | $this->addField(new CoordinateField('height', 200)); |
||
13 | $this->addField(new CoordinateField('left', '2')); |
||
14 | $this->addField(new CoordinateField('top', 'bottom-10')); |
||
15 | $this->addField(new ColorField('color', 'ffffff')); |
||
16 | $this->addField(new SelectField('scale', array('any', 'down', 'up'), 'any')); |
||
17 | $this->addField(new CheckboxField('merge', false, "Merge or copy over")); |
||
18 | } |
||
33 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.