Actions
Bug #80905
closedClass AbstractNode missing in LegacyClassesForIde.php
Start date:
2017-04-20
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
easy
Is Regression:
Sprint Focus:
Description
The Class TYPO3\CMS\Fluid\Core\Parser\SyntaxTree\AbstractNode
is part of sysext/fluid/Migrations/Code/ClassAliasMap.php
but is not present in sysext/fluid/Migrations/Code/LegacyClassesForIde.php
, thus it is not recognised in the IDE.
Please add the following to LegacyClassesForIde.php
namespace TYPO3\CMS\Fluid\Core\Parser\SyntaxTree {
class AbstractNode extends \TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\ViewHelperNode
{
}
}
By the way..is the class AbstractNode on purpose mapping to the new ViewHelperNode and not the new AbstractNode?
Actions