a4519e491ddb32a8efcdf5847ab69f7a6f7180e3
[yaffs-website] / web / modules / contrib / ctools / tests / modules / ctools_wizard_test / src / ExampleConfigEntityInterface.php
1 <?php
2
3 namespace Drupal\ctools_wizard_test;
4
5 use Drupal\Core\Config\Entity\ConfigEntityInterface;
6
7 /**
8  * Provides an interface for defining Example config entity entities.
9  */
10 interface ExampleConfigEntityInterface extends ConfigEntityInterface {
11
12   /**
13    * Get first piece of information.
14    *
15    * @return string
16    */
17   public function getOne();
18
19   /**
20    * Get second piece of information;
21    *
22    * @return string
23    */
24   public function getTwo();
25
26 }