Completed
Push — master ( 897f47...981c43 )
by Nikola
18:02 queued 08:00
created

RateType   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 13
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/*
3
 * This file is part of the Exchange Rate package, an RunOpenCode project.
4
 *
5
 * Implementation of exchange rate crawler for Banca Intesa Serbia, http://www.bancaintesa.rs.
6
 *
7
 * (c) 2017 RunOpenCode
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
namespace RunOpenCode\ExchangeRate\BancaIntesaSerbia\Enum\RateType;
13
14
/**
15
 * Class RateType
16
 *
17
 * @package RunOpenCode\ExchangeRate\BancaIntesaSerbia\Enum
18
 */
19
final class RateType
20
{
21
    const DEFAULT = \RunOpenCode\ExchangeRate\Enum\RateType::DEFAULT;
22
    const FOREIGN_CASH_BUYING = 'foreign_cash_buying';
23
    const FOREIGN_CASH_SELLING = 'foreign_cash_selling';
24
    const FOREIGN_EXCHANGE_BUYING = 'foreign_exchange_buying';
25
    const FOREIGN_EXCHANGE_SELLING = 'foreign_exchange_selling';
26
27
    private function __construct()
28
    {
29
        // noop
30
    }
31
}
32