ExampleConfigEntityInterface.php
Same filename in other branches
Namespace
Drupal\ctools_wizard_testFile
-
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
Title | Deprecated | Summary |
---|---|---|
ExampleConfigEntityInterface | Provides an interface for defining Example config entity entities. |