First commit

This commit is contained in:
Alex Bilbie
2012-07-05 17:38:58 +01:00
parent 5a98658812
commit 7bca63a18f
6 changed files with 126 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
namespace LNCD\OAuth2server;
class Client
{
protected $id;
protected $secret;
protected $redirect_uri
public function __construct()
{
}
public function validate(array $details)
{
}
public function redirectUri(string $redirectUri, array $params, $queryDelimeter = '?')
{
// Generates the redirect uri with appended params
}
}