Closed Jean85 closed 1 year ago
I got an issue with \SplFileObject::getChildren, which in PHP 8.2 has a tentative return type of null. The code generator was creating a return type written as ): ? {, creating a syntax error on the double. This fixes it.
\SplFileObject::getChildren
null
): ? {
CI build failure seems unrelated, probably due just to updated dependencies, especially PHPStan. I'll try to address them in a separate PR.
I got an issue with
\SplFileObject::getChildren
, which in PHP 8.2 has a tentative return type ofnull
. The code generator was creating a return type written as): ? {
, creating a syntax error on the double. This fixes it.