cHeeSaW/alpha-vantage-bundle

View on GitHub
Service/AlphaVantage.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace cHeeSaW\AlphaVantageBundle\Service;

use cHeeSaW\AlphaVantageBundle\Endpoints\Endpoint;
use Exception;

interface AlphaVantage
{
    /**
     * @throws Exception
     */
    public function get(Endpoint $endpoint): string;
}