You are here

ExampleConfigEntityInterface.php in Chaos Tool Suite (ctools) 8.3

File

tests/modules/ctools_wizard_test/src/ExampleConfigEntityInterface.php
View source
<?php

namespace Drupal\ctools_wizard_test;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface for defining Example config entity entities.
 */
interface ExampleConfigEntityInterface extends ConfigEntityInterface {

  /**
   * Get first piece of information.
   *
   * @return string
   */
  public function getOne();

  /**
   * Get second piece of information;.
   *
   * @return string
   */
  public function getTwo();

}

Interfaces

Namesort descending Description
ExampleConfigEntityInterface Provides an interface for defining Example config entity entities.