ticket-8.x-1.x-dev/src/Entity/RegistrationTypeInterface.php
src/Entity/RegistrationTypeInterface.php
<?php
namespace Drupal\ticket\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining Registration type entities.
*/
interface RegistrationTypeInterface extends ConfigEntityInterface {
/**
* {@inheritdoc}
*/
public function isLocked();
}
