Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | public function mapReadModelToDbalOptions(FieldDataType $fieldDataType) |
||
11 | { |
||
12 | $options = ['notnull' => false]; |
||
13 | |||
14 | switch ($fieldDataType) { |
||
15 | case $fieldDataType instanceof Decimal: |
||
16 | $options = array_merge($options, ['scale' => $fieldDataType->getFractionalDigits(), 'precision' => $fieldDataType->getTotalDigits()]); |
||
17 | break; |
||
18 | } |
||
19 | |||
20 | return $options; |
||
21 | } |
||
23 |