ClientEntityInterface.php in Simple OAuth (OAuth2) & OpenID Connect 8.4
Same filename and directory in other branches
Namespace
Drupal\simple_oauth\EntitiesFile
src/Entities/ClientEntityInterface.phpView source
<?php
namespace Drupal\simple_oauth\Entities;
use League\OAuth2\Server\Entities\ClientEntityInterface as LeagueClientEntityInterface;
interface ClientEntityInterface extends LeagueClientEntityInterface {
/**
* Set the name of the client.
*
* @param string $name
* The name to set.
*/
public function setName($name);
/**
* Returns the associated Drupal entity.
*
* @return \Drupal\consumers\Entity\Consumer
* The Drupal entity.
*/
public function getDrupalEntity();
}
Interfaces
Name | Description |
---|---|
ClientEntityInterface |