refactor(dashboard): move price clients to app namespace and simplify data

This commit is contained in:
2026-08-01 21:55:23 +02:00
parent 69f214ade3
commit 0fa648f833
8 changed files with 31 additions and 32 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace App\Contracts;
use Illuminate\Support\Collection;
interface PriceRepository
{
public function retrieveElectricity(): Collection;
public function retrieveGas(): Collection;
}