Reputation: 301
In one of our extensions we have this snippet:
/**
* action main
*
* @return void
* @dontverifyrequesthash
*/
TYPO3 Version 8 with PHP 7.1 works. TYPO3 Version 9 with PHP 7.2 we get this error:
[Semantical Error] The annotation "@dontverifyrequesthash" in method X\Y\Controller\Z::mainAction() was never imported. Did you maybe forget to add a "use" statement for this annotation?
can someone help please?
Upvotes: 0
Views: 589
Reputation: 6174
The annotation @dontverifyrequesthash
died before TYPO3 version 6.2, so you can remove it.
Upvotes: 2