server/src/app/Providers/ViafServiceProvider.php
author ymh <ymh.work@gmail.com>
Fri, 05 Feb 2016 17:01:09 +0100
changeset 117 7abc74acf392
parent 23 037687868bc4
child 139 8d688175513a
permissions -rw-r--r--
When merging ore:aggregation, process the license correctly, if different or null, the default is use, if the same, this is the value used

<?php

namespace CorpusParole\Providers;

use Config;

use Illuminate\Support\ServiceProvider;

use CorpusParole\Services\ViafResolver;

class ViafServiceProvider extends ServiceProvider
{
    /**
     * Register the application services.
     *
     * @return void
     */
    public function register()
    {
        $this->app->bind('CorpusParole\Services\ViafResolverInterface', function($app) {
            return new ViafResolver($app['guzzle']);
        });
    }
}