From 2de9d447a393642bae1c5bf6363568cb1525f7cf Mon Sep 17 00:00:00 2001 From: Remy Bos <27890746+sjokkateer@users.noreply.github.com> Date: Thu, 19 May 2022 17:23:42 +0200 Subject: [PATCH] ABSTRACT INJECTOR: Remove redundant @inheritDoc from __construct() Signed-off-by: Remy Bos <27890746+sjokkateer@users.noreply.github.com> --- src/CodeGenerator/AbstractInjector.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/CodeGenerator/AbstractInjector.php b/src/CodeGenerator/AbstractInjector.php index 6a8ab4c7..301254f4 100644 --- a/src/CodeGenerator/AbstractInjector.php +++ b/src/CodeGenerator/AbstractInjector.php @@ -23,9 +23,6 @@ abstract class AbstractInjector implements InjectorInterface private InjectorInterface $injector; - /** - * {@inheritDoc} - */ public function __construct(InjectorInterface $injector, ?ContainerInterface $container = null) { $this->injector = $injector;