feat(history): add energy price history feature
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
namespace App\Contracts;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Support\Collection;
|
||||
|
||||
interface PriceClient
|
||||
@@ -9,4 +10,8 @@ interface PriceClient
|
||||
public function getElectricityPrices(): Collection;
|
||||
|
||||
public function getGasPrices(): Collection;
|
||||
|
||||
public function getElectricityPricesForDate(Carbon $date): Collection;
|
||||
|
||||
public function getGasPricesForDate(Carbon $date): Collection;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user