Your project should not use invalid return types
- Read doc
- Reliability
- Major
More information: https://insight.symfony.com/what-we-analyse/php.invalid_return_typehint
- protected function toPngData(\GdImage $image): string
- {
- \ob_start();
- \imagepng($image);
- return \ob_get_clean();
- }
- /**
- * @return resource
- */