Added repository files

This commit is contained in:
Elliot Hesp
2014-11-26 11:38:20 +00:00
parent 26e516f739
commit 058d219733
4 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php namespace Cachet\Repositories\Component;
interface ComponentRepository {
public function all();
public function findOrFail($id);
public function incidents($id);
}