From 344526648949b8414c3c02579eae673ffa50be0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 23 Jul 2020 13:07:34 +0200 Subject: [PATCH] Fix: Line length MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Möller --- src/Transfer/Adapter/FilterPluginManager.php | 4 +++- src/Transfer/Adapter/ValidatorPluginManager.php | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Transfer/Adapter/FilterPluginManager.php b/src/Transfer/Adapter/FilterPluginManager.php index c7da9d5e..99296ee5 100644 --- a/src/Transfer/Adapter/FilterPluginManager.php +++ b/src/Transfer/Adapter/FilterPluginManager.php @@ -8,8 +8,10 @@ namespace Laminas\File\Transfer\Adapter; +use Interop\Container; use Laminas\Filter\File; use Laminas\Filter\FilterPluginManager as BaseManager; +use Laminas\ServiceManager; /** * Plugin manager implementation for the filter chain. @@ -42,7 +44,7 @@ class FilterPluginManager extends BaseManager * Merges default aliases pertinent to this plugin manager with those * defined in the parent filter plugin manager. * - * @param null|\Laminas\ServiceManager\ConfigInterface|\Interop\Container\ContainerInterface $configOrContainerInstance + * @param null|ServiceManager\ConfigInterface|Container\ContainerInterface $configOrContainerInstance * @param array $v3config If $configOrContainerInstance is a container, this * value will be passed to the parent constructor. */ diff --git a/src/Transfer/Adapter/ValidatorPluginManager.php b/src/Transfer/Adapter/ValidatorPluginManager.php index 5a57e2e9..2501be26 100644 --- a/src/Transfer/Adapter/ValidatorPluginManager.php +++ b/src/Transfer/Adapter/ValidatorPluginManager.php @@ -8,6 +8,8 @@ namespace Laminas\File\Transfer\Adapter; +use Interop\Container; +use Laminas\ServiceManager; use Laminas\Validator\File; use Laminas\Validator\ValidatorPluginManager as BaseManager; @@ -73,7 +75,7 @@ class ValidatorPluginManager extends BaseManager * Merges default aliases pertinent to this plugin manager with those * defined in the parent filter plugin manager. * - * @param null|\Laminas\ServiceManager\ConfigInterface|\Interop\Container\ContainerInterface $configOrContainerInstance + * @param null|ServiceManager\ConfigInterface|Container\ContainerInterface $configOrContainerInstance * @param array $v3config If $configOrContainerInstance is a container, this * value will be passed to the parent constructor. */