Files
Zonneplan/app/Features/Dashboard/Contracts/PriceClient.php
T

13 lines
219 B
PHP

<?php
namespace App\Features\Dashboard\Contracts;
use Illuminate\Support\Collection;
interface PriceClient
{
public function getElectricityPrices(): Collection;
public function getGasPrices(): Collection;
}