You are here

FruitInterface.php in Plug 7

File

modules/plug_example/src/Plugin/fruit/FruitInterface.php
View source
<?php

/**
 * @file
 * Contains Drupal\plug_example\Plugin\fruit\FruitInterface
 */
namespace Drupal\plug_example\Plugin\fruit;

interface FruitInterface {

  /**
   * Displays a fruit.
   *
   * @return string
   *   The fruit representation.
   */
  public function display();

}

Interfaces

Namesort descending Description
FruitInterface