You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current release (4.14.0) does not support PHP 8.4, probably because of an outdated php-parser included in the Phar (which is the preferred option to run the analyser).
For example, the following construct fails:
// Lines 111 - 113returnnewBadRequest()
->addCustomError(sprintf('Requested mailing list %s is not available', $list->name), 'lists')
->asResponse($this->serializer);
With the following error:
In LocateASTFromFiles.php line 41:
Parsing the file [/builds/khY4wW1e/1/group/project/src/Someting/API/MailingList
/MailingListApiController.php] resulted in an error: Syntax error, unexpect
ed T_OBJECT_OPERATOR, expecting ';' on line 112
Looking at php-parser, an upgrade to at least 5.1.0 is required for the syntax used above, and 5.2.0 for property hook support.
The text was updated successfully, but these errors were encountered:
The current release (4.14.0) does not support PHP 8.4, probably because of an outdated php-parser included in the Phar (which is the preferred option to run the analyser).
For example, the following construct fails:
With the following error:
Looking at php-parser, an upgrade to at least 5.1.0 is required for the syntax used above, and 5.2.0 for property hook support.
The text was updated successfully, but these errors were encountered: