master_template/app/Repositories/Interface/HoroscopeInterface.php

13 lines
317 B
PHP
Raw Normal View History

2024-06-18 05:46:51 +00:00
<?php
namespace App\Repositories\Interface;
interface HoroscopeInterface
{
public function getAll();
public function getHoroscopeById($horoscopeId);
public function delete($horoscopeId);
public function create(array $horoscopeDetails);
public function update($horoscopeId, array $newDetails);
}