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

Commit

Permalink
Fix: Line length
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Möller <[email protected]>
  • Loading branch information
localheinz committed Jul 23, 2020
1 parent b680646 commit 3445266
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/Transfer/Adapter/FilterPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
*/
Expand Down
4 changes: 3 additions & 1 deletion src/Transfer/Adapter/ValidatorPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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.
*/
Expand Down

0 comments on commit 3445266

Please sign in to comment.