| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class CurrencySupportEndpoint extends AbstractEndpoint implements ExecutorInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Method to perform requests to this endpoint. |
||
| 12 | */ |
||
| 13 | const REQUEST_METHOD = "GET"; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Endpoint path. |
||
| 17 | * |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | protected $path = "symbols"; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * CurrencySupportEndpoint constructor. |
||
| 24 | * |
||
| 25 | * @param FixerHttpClient $client |
||
| 26 | */ |
||
| 27 | public function __construct(FixerHttpClient $client) |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function execute() |
||
| 43 |