You are here

Broken.php in Courier 8

Same filename and directory in other branches
  1. 2.x src/Plugin/IdentityChannel/Broken.php

File

src/Plugin/IdentityChannel/Broken.php
View source
<?php

/**
 * @file
 * Contains \Drupal\courier\Plugin\IdentityChannel\Broken.
 */
namespace Drupal\courier\Plugin\IdentityChannel;

use Drupal\courier\ChannelInterface;
use Drupal\Core\Entity\EntityInterface;

/**
 * Fallback plugin for missing IdentityChannel plugins.
 *
 * @IdentityChannel(
 *   id = "broken",
 *   label = @Translation("Broken/Missing")
 * )
 */
class Broken implements IdentityChannelPluginInterface {

  /**
   * {@inheritdoc}
   */
  public function applyIdentity(ChannelInterface &$message, EntityInterface $identity) {
  }

}

Classes

Namesort descending Description
Broken Fallback plugin for missing IdentityChannel plugins.