Rule for EntityTypeInterface::isSubclassOf() -> EntityTypeInterface::entityClassImplements()
>>> [!note] Migrated issue
<!-- Drupal.org comment -->
<!-- Migrated from issue #3266198. -->
Reported by: [mglaman](https://www.drupal.org/user/2416470)
>>>
<h2>Drupal version</h2>
<p>Before:</p>
<pre>if ($entity_type->isSubclassOf(FieldableEntityInterface::CLASS)) {</pre><p>After</p>
<pre>if ($entity_type->entityClassImplements(FieldableEntityInterface::CLASS)) {</pre><p>CR here: <a href="https://www.drupal.org/node/2842808">https://www.drupal.org/node/2842808</a></p>
issue