You are here

StateListInterface.php in Country, State and City Fields 8

File

src/StateListInterface.php
View source
<?php

namespace Drupal\country_state_city;

use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\user\EntityOwnerInterface;
use Drupal\Core\Entity\EntityChangedInterface;

/**
 * Provides an interface defining a Slider entity.
 *
 * We have this interface so we can join the other interfaces it extends.
 *
 * @ingroup country_state_city
 */
interface StateListInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {

}

Interfaces

Namesort descending Description
StateListInterface Provides an interface defining a Slider entity.