Just found out that method alsoknow() in title.php is missing in its phpdoc comment the "comment" (singular) variable in @return line 1175.
This line
* @return array<array{title: string, country: string, countryCode: string|null, language: string, languageCode: string|null, comments: string[]}>
should be replaced by
* @return array<array{title: string, country: string, countryCode: string|null, language: string, languageCode: string|null, comment: string, comments: string[]}>
I added "comment: string, ".
It is necessary for projects using imdbphp and phpstan.
Just found out that method alsoknow() in title.php is missing in its phpdoc comment the "comment" (singular) variable in @return line 1175.
This line
* @return array<array{title: string, country: string, countryCode: string|null, language: string, languageCode: string|null, comments: string[]}>should be replaced by
* @return array<array{title: string, country: string, countryCode: string|null, language: string, languageCode: string|null, comment: string, comments: string[]}>I added "comment: string, ".
It is necessary for projects using imdbphp and phpstan.