oauth2-server/src/Entities/Interfaces/ClientEntityInterface.php

30 lines
539 B
PHP
Raw Normal View History

2015-04-05 14:03:25 +01:00
<?php
namespace League\OAuth2\Server\Entities\Interfaces;
interface ClientEntityInterface
{
/**
* Get the client's identifier
* @return string
*/
public function getIdentifier();
/**
* Set the client's identifier
* @param $identifier
*/
public function setIdentifier($identifier);
/**
* Get the client's name
* @return string
*/
public function getName();
/**
* Set the client's name
* @param string $name
*/
public function setName($name);
}