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
@@ -0,0 +1,12 @@
<?php namespace Cachet\Support\ServiceProviders;
use Illuminate\Support\ServiceProvider;
class RepositoryServiceProvider extends ServiceProvider {
public function register()
{
$this->app->bind('Cachet\Repositories\Component\ComponentRepository', 'Cachet\Repositories\Component\EloquentComponentRepository');
}
}