Failed Conditions
Pull Request — master (#4127)
by Owen
12:31
created

Currency::formatCurrencyCode()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 7
rs 10
c 0
b 0
f 0
ccs 4
cts 4
cp 1
cc 2
nc 2
nop 0
crap 2
1
<?php
2
3
namespace PhpOffice\PhpSpreadsheet\Style\NumberFormat\Wizard;
4
5
class Currency extends CurrencyBase
6
{
7
    protected ?bool $overrideSpacing = false;
8
9
    protected ?string $overrideNegative = null;
10
}
11