14 lines
278 B
PHP
14 lines
278 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Interfaces;
|
|
|
|
use App\Models\Car;
|
|
|
|
interface CarRepositoryInterface
|
|
{
|
|
public function getAllCars();
|
|
public function createCar(array $data);
|
|
public function updateCar(Car $car, array $data);
|
|
public function deleteCar(Car $car);
|
|
}
|