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