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

CurrencySupportEndpoint::execute()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace VictorAvelar\Fixer\Endpoints;
4
5
use VictorAvelar\Fixer\FixerHttpClient;
6
7
class CurrencySupportEndpoint extends AbstractEndpoint
8
{
9
    /**
10
     * Method to perform requests to this endpoint.
11
     */
12
    const REQUEST_METHOD = "GET";
13
14
    /**
15
     * Endpoint path.
16
     *
17
     * @var string
18
     */
19
    protected $path = "symbols";
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