Files
farmOS-dev/web/modules/consumers/src/Entity/ConsumerInterface.php
2024-12-10 15:08:16 +01:00

22 lines
402 B
PHP

<?php
namespace Drupal\consumers\Entity;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface defining a consumer entity.
*/
interface ConsumerInterface extends ContentEntityInterface, EntityOwnerInterface {
/**
* Gets the client ID.
*
* @return string
* The client ID.
*/
public function getClientId(): string;
}