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

LatestRatesEndpoint::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
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