MeticPoint API

This commit is contained in:
James Brooks
2014-12-13 14:02:56 +00:00
parent 101e7c3012
commit 613911ee84
5 changed files with 117 additions and 0 deletions
@@ -0,0 +1,14 @@
<?php
namespace CachetHQ\Cachet\Repositories\MetricPoint;
interface MetricPointRepository {
public function all();
public function create(array $array);
public function findOrFail($id);
public function update($id, array $with);
}