parent
e3dd6013ba
commit
8dd569a6a6
2 changed files with 13 additions and 2 deletions
|
@ -11,14 +11,23 @@
|
||||||
"severity": 5,
|
"severity": 5,
|
||||||
"source": "Typo3Update.Classname.InstantiationWithMakeInstance.legacyClassname",
|
"source": "Typo3Update.Classname.InstantiationWithMakeInstance.legacyClassname",
|
||||||
"type": "ERROR"
|
"type": "ERROR"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"column": 25,
|
||||||
|
"fixable": false,
|
||||||
|
"line": 27,
|
||||||
|
"message": "Calls to removed code are not allowed; found perm. Removed in 7.0. The logic is moved into EXT:beuser. See: https://docs.typo3.org/typo3cms/extensions/core/7.6/Changelog/7.0/Breaking-62339-MoveExtPermIntoExtBeuser.html",
|
||||||
|
"severity": 5,
|
||||||
|
"source": "Typo3Update.Classname.InstantiationWithMakeInstance.RemovedExtension.perm",
|
||||||
|
"type": "WARNING"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"warnings": 0
|
"warnings": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"totals": {
|
"totals": {
|
||||||
"errors": 1,
|
"errors": 1,
|
||||||
"fixable": 1,
|
"fixable": 1,
|
||||||
"warnings": 0
|
"warnings": 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,3 +23,5 @@ t3lib_div::makeInstance('Tx_Extbase_Command_HelpCommandController');
|
||||||
t3lib_div::makeInstance(\TYPO3\CMS\Core\Resource\Service\IndexerService::class);
|
t3lib_div::makeInstance(\TYPO3\CMS\Core\Resource\Service\IndexerService::class);
|
||||||
// Not handled by this sniff, but StaticCallSniff, as this uses double colon.
|
// Not handled by this sniff, but StaticCallSniff, as this uses double colon.
|
||||||
t3lib_div::makeInstance(Tx_Extbase_Command_HelpCommandController::class);
|
t3lib_div::makeInstance(Tx_Extbase_Command_HelpCommandController::class);
|
||||||
|
|
||||||
|
t3lib_div::makeInstance('TYPO3\CMS\Perm\Controller\PermissionAjaxController');
|
||||||
|
|
Loading…
Reference in a new issue