Commit 16663be6 authored by Andreas De Rijcke's avatar Andreas De Rijcke Committed by davisben
Browse files

Issue #3275659: ConnectionBase must implement ContainerFactoryPluginInterface

parent ef842157
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
namespace Drupal\mailgroup;

use Drupal\Component\Plugin\PluginBase;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\Logger\LoggerChannelInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
@@ -10,7 +11,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
/**
 * Mail group connection plugin base class.
 */
abstract class ConnectionBase extends PluginBase implements ConnectionInterface {
abstract class ConnectionBase extends PluginBase implements ConnectionInterface, ContainerFactoryPluginInterface {
  use StringTranslationTrait;

  /**