page_tester-1.0.x-dev/src/TestInterface.php
src/TestInterface.php
<?php
declare(strict_types=1);
namespace Drupal\page_tester;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface defining a test entity type.
*/
interface TestInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
