Completed
Push — master ( ff1e39...f5c078 )
by Victor Hugo
15:05
created

LatestRatesEndpoint   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace VictorAvelar\Fixer\Endpoints;
4
5
use VictorAvelar\Fixer\FixerHttpClient;
6
7
/**
8
 * Class LatestRatesEndpoint
9
 *
10
 * @package VictorAvelar\Fixer\Endpoints
11
 */
12
class LatestRatesEndpoint extends AbstractEndpoint
13
{
14
    /**
15
     * Endpoint path.
16
     *
17
     * @var string
18
     */
19
    protected $path = "latest";
20
21
    /**
22
     * CurrencySupportEndpoint constructor.
23
     *
24
     * @param FixerHttpClient $client
25
     */
26
    public function __construct(FixerHttpClient $client)
27
    {
28
        parent::__construct($client);
29
    }
30
}
31