| Conditions | 4 |
| Paths | 8 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | private function generateDefaults() |
||
| 40 | { |
||
| 41 | if (empty($this->fixed)) { |
||
| 42 | $this->fixed = $this->setDefaults()['fixed']; |
||
| 43 | } |
||
| 44 | |||
| 45 | if (empty($this->min)) { |
||
| 46 | $this->min = $this->setDefaults()['min']; |
||
| 47 | } |
||
| 48 | |||
| 49 | if (empty($this->max)) { |
||
| 50 | $this->max = $this->setDefaults()['max']; |
||
| 51 | } |
||
| 52 | } |
||
| 53 | private function generateFloatNumber() |
||
| 66 |