first change
This commit is contained in:
17
Modules/PMS/app/Repositories/TicketInterface.php
Normal file
17
Modules/PMS/app/Repositories/TicketInterface.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\PMS\Repositories;
|
||||
|
||||
interface TicketInterface
|
||||
{
|
||||
public function findAll();
|
||||
|
||||
public function getTicketById($clientId);
|
||||
|
||||
public function delete($clientId);
|
||||
public function create($clientDetails);
|
||||
public function update($clientId, array $newDetails);
|
||||
public function pluck();
|
||||
public function count();
|
||||
|
||||
}
|
Reference in New Issue
Block a user