16 lines
251 B
PHP
16 lines
251 B
PHP
<?php
|
|
|
|
namespace CachetHQ\Cachet\Repositories\Incident;
|
|
|
|
interface IncidentRepository
|
|
{
|
|
|
|
public function all();
|
|
|
|
public function create($id, array $array);
|
|
|
|
public function findOrFail($id);
|
|
|
|
public function update($id, array $with);
|
|
}
|