Changed namespacing to master CachetHq

This commit is contained in:
Elliot Hesp
2014-11-26 13:01:07 +00:00
parent e454a3395b
commit 7c0b80f6a4
11 changed files with 102 additions and 41 deletions
@@ -0,0 +1,12 @@
<?php namespace CachetHq\Cachet\Support\ServiceProviders;
use Illuminate\Support\ServiceProvider;
class RepositoryServiceProvider extends ServiceProvider {
public function register()
{
$this->app->bind('CachetHq\Cachet\Repositories\Component\ComponentRepository', 'CachetHq\Cachet\Repositories\Component\EloquentComponentRepository');
}
}