ExampleConfigEntityInterface.php in Chaos Tool Suite (ctools) 8.3
Namespace
Drupal\ctools_wizard_testFile
tests/modules/ctools_wizard_test/src/ExampleConfigEntityInterface.phpView 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
Name | Description |
---|---|
ExampleConfigEntityInterface | Provides an interface for defining Example config entity entities. |