Actions
Bug #73624
closedWrong type declaration in Extension Model
Status:
Closed
Priority:
Could have
Assignee:
-
Category:
-
Target version:
-
Start date:
2016-02-23
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
5.5
Tags:
Complexity:
no-brainer
Is Regression:
No
Sprint Focus:
Description
In the Extension Model (TYPO3\CMS\Extensionmanager\Domain\Model\Extension) of the extensionmanager there is an old type declaration in the comment for $dependencies.
The comment says
/**
* @var \SplObjectStorage<Tx_Extensionmanager_Utility_Dependency>
*/
but it should be
/**
* @var \SplObjectStorage<\TYPO3\CMS\Extensionmanager\Domain\Model\Dependency>
*/
like the method addDependency requests for its parameter.
Actions