Skip to content

Commit

Permalink
Merge pull request #194 from boesing/qa/narrow-return-type-of-single-…
Browse files Browse the repository at this point in the history
…instance-plugin-managers

Narrow return type of single instance plugin managers
  • Loading branch information
boesing authored May 14, 2023
2 parents 9c92e98 + 09590df commit ca24d9e
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 @@ -26,6 +26,14 @@ abstract class AbstractSingleInstancePluginManager extends AbstractPluginManager
*/
protected string $instanceOf;

/**
* {@inheritDoc}
*/
public function get(string $id): object
{
return parent::get($id);
}

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

0 comments on commit ca24d9e

Please sign in to comment.