13 lines
238 B
PHP
13 lines
238 B
PHP
<?php namespace CachetHq\Cachet\Repositories\Component;
|
|
|
|
interface ComponentRepository {
|
|
|
|
public function all();
|
|
|
|
public function create($id, array $array);
|
|
|
|
public function findOrFail($id);
|
|
|
|
public function with($id, array $with);
|
|
}
|