Psalm just created a `ClassMustBeFinal` error with some explanation: - Harder BC-policy - Final classes are optimized by PHP/Opcache https://github.com/vimeo/psalm/pull/11279 I was wondering if the same report would be - easy to implement for phpstan - a good idea for phpstan-strict-rule It will report an error if - The class is not final - The class has no children - The class does not have `@final` annotation - The class does not have `@api` annotation - Something else ? Also, best would be for phpstan-doctrine plugin to automatically ignore this rule for the `src/Entity` folder.