cms_content_sync-3.0.x-dev/src/Entity/EntityStatusInterface.php
src/Entity/EntityStatusInterface.php
<?php
namespace Drupal\cms_content_sync\Entity;
use Drupal\cms_content_sync\EntityStatusProxyInterface;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
/**
* Provides an interface for defining Sync entity entities.
*
* @ingroup cms_content_sync_entity_status
*/
interface EntityStatusInterface extends EntityStatusProxyInterface, ContentEntityInterface, EntityChangedInterface {
/**
* Get the pool.
*
* @return Pool
*/
public function getPool();
}
