Skip to content

Commit 1729ea9

Browse files
author
Rens Admiraal
committed
BUGFIX: Unneeded dependency on TYPO3.Neos package
The contentDimensionPresetSource was typehinted to the Neos ContentDimensionPresetSourceInterface from the TYPO3.Neos package. This interface is based on the corresponding ContentDimensionPresetSourceInterface interface in the TYPO3.TYPO3CR package. As the command controller does not make use of the additional method on the interface in the Neos package the use of it is useless. This change changes the type hint to the TYPO3.TYPO3CR package so the Elastic content rpeository adaptor can be installed without the TYPO3.Neos package.
1 parent 2ab16f6 commit 1729ea9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Classes/Command/NodeIndexCommandController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class NodeIndexCommandController extends CommandController
5252

5353
/**
5454
* @Flow\Inject
55-
* @var \Neos\Neos\Domain\Service\ContentDimensionPresetSourceInterface
55+
* @var \Neos\ContentRepository\Domain\Service\ContentDimensionPresetSourceInterface
5656
*/
5757
protected $contentDimensionPresetSource;
5858

0 commit comments

Comments
 (0)