Skip to content

Commit

Permalink
qa: add narrowed type-hint to `AbstractSingleInstancePluginManager#bu…
Browse files Browse the repository at this point in the history
…ild` to aligh with `AbstractSingleInstancePluginManager#get`

Signed-off-by: Maximilian Bösing <[email protected]>
  • Loading branch information
boesing committed Aug 27, 2023
1 parent 879f9c9 commit a9e6991
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/AbstractSingleInstancePluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ public function get(string $id): object
return parent::get($id);
}

/**
* {@inheritDoc}
*/
public function build(string $name, ?array $options = null): object
{
return parent::build($name, $options);
}

/**
* {@inheritDoc}
*/
Expand Down

0 comments on commit a9e6991

Please sign in to comment.