13 lines
308 B
PHP
13 lines
308 B
PHP
<?php
|
|
|
|
namespace Modules\Meeting\Repositories;
|
|
|
|
interface MeetingInterface
|
|
{
|
|
public function findAll();
|
|
public function getMeetingById($meetingId);
|
|
public function delete($meetingId);
|
|
public function create(array $meetingDetails);
|
|
public function update($meetingId, array $newDetails);
|
|
}
|