New entities, traits and interfaces

This commit is contained in:
Alex Bilbie
2015-04-05 14:03:25 +01:00
parent 171be1c422
commit a48630c837
15 changed files with 474 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace League\OAuth2\Server\Entities\Interfaces;
interface ScopeEntityInterface
{
/**
* Get the scope's identifier
* @return string
*/
public function getIdentifier();
/**
* Set the scope's identifier
* @param $identifier
*/
public function setIdentifier($identifier);
}