ExampleConfigEntityInterface.php

Same filename in other branches
  1. 8.x-3.x tests/modules/ctools_wizard_test/src/ExampleConfigEntityInterface.php

Namespace

Drupal\ctools_wizard_test

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

Title Deprecated Summary
ExampleConfigEntityInterface Provides an interface for defining Example config entity entities.