13 lines
202 B
PHP
13 lines
202 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
interface PriceRepository
|
|
{
|
|
public function retrieveElectricity(): Collection;
|
|
|
|
public function retrieveGas(): Collection;
|
|
}
|