DeploymentInterface.php in Build Hooks 8.2
Same filename and directory in other branches
Namespace
Drupal\build_hooks\EntityFile
src/Entity/DeploymentInterface.phpView source
<?php
namespace Drupal\build_hooks\Entity;
use Drupal\Core\Entity\ContentEntityInterface;
/**
* Defines an interface for a deployment entity.
*/
interface DeploymentInterface extends ContentEntityInterface {
/**
* Gets the deployment status.
*
* @return bool
* Deployment status.
*/
public function isDeployed() : bool;
}
Interfaces
Name | Description |
---|---|
DeploymentInterface | Defines an interface for a deployment entity. |