page_layouts-1.0.1/src/LayoutInterface.php
src/LayoutInterface.php
<?php
declare(strict_types=1);
namespace Drupal\page_layouts;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface defining a layout entity type.
*/
interface LayoutInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
