Commit f0b6c7c6 authored by Yazan Majadba's avatar Yazan Majadba Committed by Qusai Taha
Browse files

Issue #3321401: Issue with dependency injection

parent e0e0dc4a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -29,23 +29,23 @@ class GleapBlock extends BlockBase implements ContainerFactoryPluginInterface {
  /**
   * The admin Gleap configuration.
   *
   * @var \Drupal\Core\Config\Config\ConfigFactoryInterface
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  protected ConfigFactoryInterface $configFactory;
  protected $configFactory;

  /**
   * The current user.
   *
   * @var Drupal\Core\Session\AccountInterface
   */
  protected AccountInterface $currentUser;
  protected $currentUser;

  /**
   * The messenger.
   *
   * @var \Drupal\Core\Messenger\MessengerInterface
   */
  protected MessengerInterface $messenger;
  protected $messenger;

  /**
   * Gleap Block.