Rename component.component to component_id with relationship name change Rename more instances of parent to component Working on Incident Repository Fix Incident seeder component_id is fillable within the model Fix bad relationship Finished Incident repository Added Metric repository Updated tests for new dingo release
15 lines
239 B
PHP
15 lines
239 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);
|
|
}
|