Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
healthcheck default setter via namespace container binding
Browse files Browse the repository at this point in the history
  • Loading branch information
svensp committed Jan 7, 2020
1 parent 4f8263f commit 16eb3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Blueprint/Healthcheck/HealthcheckProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function register() {
};

$this->container[HealthcheckConfigurationToService::class] = function ($c) {
return new HealthcheckConfigurationToService( $c['healthcheck-default-setter'] );
return new HealthcheckConfigurationToService( $c[HealthcheckDefaultInformationSetter::class] );
};
$this->container['healthcheck-parser'] = function ($c) {
return $c[HealthcheckConfigurationToService::class];
Expand Down

0 comments on commit 16eb3af

Please sign in to comment.