Ich habe den Begriff Bindungscontainer in der Laravel-Dokumentation gesehen. Wie wird er nach einer solchen Bindung im Anbieter implementiert?
$this->app->bind('HelpSpot\API', function ($app) {
return new HelpSpot\API($app->make('HttpClient'));
});
https://laravel.com/docs/5.4/...
直接
resolve('HelpSpot\API')