You are here

NameInterface.php in Plug 7

File

modules/plug_example/src/Plugin/name/NameInterface.php
View source
<?php

/**
 * @file
 * Contains Drupal\plug_example\Plugin\name\NameInterface
 */
namespace Drupal\plug_example\Plugin\name;

interface NameInterface {

  /**
   * Displays a name.
   *
   * @return string
   *   The name representation.
   */
  public function displayName();

}

Interfaces

Namesort descending Description
NameInterface