Updated examples

This commit is contained in:
Alex Bilbie
2016-04-09 15:17:11 +01:00
parent 5cba35456f
commit 5ca2152313
5 changed files with 82 additions and 28 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace League\OAuth2\Server\Entities\Traits;
trait AuthCodeTrait
{
/**
* @var null|string
*/
protected $redirectUri;
/**
* @return string
*/
public function getRedirectUri()
{
return $this->redirectUri;
}
/**
* @param string $uri
*/
public function setRedirectUri($uri)
{
$this->redirectUri = $uri;
}
}