Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | 17 | public function __construct($name, $value, $size, $precision, $scale, $type, $rawType) |
|
18 | { |
||
19 | 17 | $this->name = $name; |
|
20 | 17 | $this->precision = $precision; |
|
21 | 17 | $this->rawType = $rawType; |
|
22 | 17 | $this->scale = $scale; |
|
23 | 17 | $this->size = $size; |
|
24 | 17 | $this->type = $type; |
|
25 | 17 | $this->value = $value; |
|
26 | 17 | } |
|
27 | |||
68 |