No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
b989a73
... +0 ...
19a0881
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
36 | 36 | */ |
|
37 | 37 | public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) |
|
38 | 38 | { |
|
39 | - | $precision = ($fieldDeclaration['precision'] ?: 10) === 10 |
|
39 | + | $precision = ($fieldDeclaration['precision'] ?? 10) === 10 |
|
40 | 40 | ? DateTimeDefaultPrecision::get() |
|
41 | 41 | : $fieldDeclaration['precision']; |
|
42 | 42 | $type = parent::getSQLDeclaration($fieldDeclaration, $platform); |
Files | Complexity | Coverage |
---|---|---|
src/Carbon | ø | 100.00% |
Project Totals (886 files) | 2163 | 100.00% |
19a0881
b989a73