Open
Description
Bug report
$ composer show mglaman/*
mglaman/phpstan-drupal 1.2.1 Drupal extension and rules for PHPStan
$ composer show phpstan/*
phpstan/extension-installer 1.3.1 Composer plugin for automatic installation of PHPStan extensions
phpstan/phpdoc-parser 1.24.2 PHPDoc parser with support for nullable, intersection and generic types
phpstan/phpstan 1.10.41 PHPStan - PHP Static Analysis Tool
phpstan/phpstan-deprecation-rules 1.1.4 PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.
phpstan/phpstan-phpunit 1.3.15 PHPUnit extensions and rules for PHPStan
Symthom is the same as in #549 or #586
170 Call to deprecated method deleteRevision() of class Drupal\Core\Entity\EntityStorageInterface:
in drupal:10.1.0 and is removed from drupal:11.0.0. Use
\Drupal\Core\Entity\RevisionableStorageInterface::deleteRevision instead.
or
170 Call to deprecated method loadRevision() of class Drupal\Core\Entity\EntityStorageInterface:
in drupal:10.1.0 and is removed from drupal:11.0.0. Use
\Drupal\Core\Entity\RevisionableStorageInterface::loadRevision instead.
Code snippet that reproduces the problem
The code calls a custom entity storage with the following definition
final class Foo extends SqlContentEntityStorage implements FooInterface {}
interface FooInterface extends ContentEntityStorageInterface {}