Laravel: why a registered service provider is not called when instantiating its provided class?

Viewed 753

This is my service provider:

<?php

namespace App\Providers;

use Illuminate\Support\Facades\Config;
use Illuminate\Support\ServiceProvider;

class ESServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap the application services.
     *
     * @return void
     */
    public function boot()
    {
        //
    }

    /**
     * Register the application services.
     *
     * @return void
     */
    public function register()
    {
        $this->app->singleton('\Elastica\Search', function ($app) {
            $client = new \Elastica\Client(array(
                'host' => env('ES_HOST'),
                'port' => env('ES_PORT')));
            $search = new \Elastica\Search($client);
            $search->addIndex(Config::get('constants.es_index'))->addType(Config::get('constants.es_type'));
            return $search;
        });
    }
}

When injecting instances of \Elastica\Search\ the closure (2nd param to singleton()) doesn't get called (verified using var_dump() / dd()). The provider is registered correctly - verified as above. Why?

1 Answers
Related