Commit 0d0e2802 authored by catch's avatar catch
Browse files

task: #3564264 Fix concrete typehinting of EntityTypeManager

By: dpi
By: longwave
(cherry picked from commit 35a84e6d)
(cherry picked from commit 201f1ec9)
parent 019f7731
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@

use Drupal\Core\Entity\EntityFieldManagerInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Entity\EntityTypeManager;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Entity\Sql\SqlContentEntityStorage;
use Drupal\Core\Field\FieldTypePluginManagerInterface;
use Drupal\Core\Render\Markup;
@@ -20,7 +20,7 @@ class FieldViewsDataProvider {
  use StringTranslationTrait;

  public function __construct(
    protected readonly EntityTypeManager $entityTypeManager,
    protected readonly EntityTypeManagerInterface $entityTypeManager,
    protected readonly FieldTypePluginManagerInterface $fieldTypePluginManager,
    protected readonly EntityFieldManagerInterface $entityFieldManager,
  ) {}