| author | ymh <ymh.work@gmail.com> |
| Tue, 23 Jun 2015 17:01:39 +0200 | |
| changeset 2 | 00e2916104fe |
| child 4 | f55970e41793 |
| permissions | -rw-r--r-- |
<?php namespace CorpusParole\Providers; use Illuminate\Support\ServiceProvider; /** * Service provider charged to bind repository interfaces to implementations */ class RepositoryServiceProvider extends ServiceProvider { public function register() { $this->app->bind( 'CorpusParole\Repositories\DocumentRepository', 'CorpusParole\Repositories\RdfDocumentRepository' ); } }