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