Make CachetHq acually be CachetHQ. Fix formatting.

This commit is contained in:
James Brooks
2014-11-26 23:20:31 +00:00
parent 37ccd2404e
commit 08360124ff
9 changed files with 242 additions and 231 deletions
@@ -1,12 +1,14 @@
<?php namespace CachetHq\Cachet\Repositories\Component;
<?php
interface ComponentRepository {
namespace CachetHQ\Cachet\Repositories\Component;
public function all();
interface ComponentRepository {
public function create($id, array $array);
public function all();
public function findOrFail($id);
public function create($id, array $array);
public function with($id, array $with);
}
public function findOrFail($id);
public function with($id, array $with);
}