11 lines
173 B
PHP
11 lines
173 B
PHP
<?php
|
|
|
|
namespace App\Features\Dashboard\Contracts;
|
|
|
|
interface PriceClient
|
|
{
|
|
public function getElectricityPrices(): array;
|
|
|
|
public function getGasPrices(): array;
|
|
}
|