Version 1
[yaffs-website] / web / modules / contrib / ctools / tests / modules / ctools_wizard_test / src / ExampleConfigEntityInterface.php
diff --git a/web/modules/contrib/ctools/tests/modules/ctools_wizard_test/src/ExampleConfigEntityInterface.php b/web/modules/contrib/ctools/tests/modules/ctools_wizard_test/src/ExampleConfigEntityInterface.php
new file mode 100644 (file)
index 0000000..a4519e4
--- /dev/null
@@ -0,0 +1,26 @@
+<?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();
+
+}