Code standards update to classes

This commit is contained in:
Elliot Hesp
2014-11-27 20:14:17 +00:00
parent bf1858cd4c
commit 954f9cf65e
5 changed files with 172 additions and 172 deletions
@@ -1,14 +1,14 @@
<?php
namespace CachetHQ\Cachet\Repositories\Component;
namespace CachetHQ\Cachet\Repositories\Component;
interface ComponentRepository {
interface ComponentRepository {
public function all();
public function all();
public function create($id, array $array);
public function create($id, array $array);
public function findOrFail($id);
public function findOrFail($id);
public function with($id, array $with);
}
public function with($id, array $with);
}