13 lines
338 B
PHP
13 lines
338 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Admin\Repositories;
|
||
|
|
||
|
interface EventInterface
|
||
|
{
|
||
|
public function findAll($filters = [], $limit = null, $offset = null);
|
||
|
public function getEventById($eventId);
|
||
|
public function delete($eventId);
|
||
|
public function create(array $eventDetails);
|
||
|
public function update($eventId, array $newDetails);
|
||
|
}
|