BRL   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 7
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 8 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Whallysson\Money\Currency\Coins;
6
7
use Whallysson\Money\Currency\AbstractCurrency;
8
9
/**
10
 * Class BRL
11
 *
12
 * @author Whallysson Avelino <[email protected]>
13
 * @package Whallysson\Money\Currency\Coins
14
 */
15
class BRL extends AbstractCurrency
16
{
17
    public function __construct()
18
    {
19
        parent::__construct(
20
            'BRL',
21
            'R$',
22
            ',',
23
            '.',
24
            'before'
25
        );
26
    }
27
}
28