Added namespaces

This commit is contained in:
Alex Bilbie 2013-05-14 09:50:40 +01:00
parent 0b3a9dc888
commit 4d36ebd3e7
3 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,7 @@
<?php
namespace League\OAuth2\Server\Storage\Fluent;
use \League\OAuth2\Server\Storage\ClientInterface;
class Client implements ClientInterface {

View File

@ -1,5 +1,7 @@
<?php
namespace League\OAuth2\Server\Storage\Fluent;
use \League\OAuth2\Server\Storage\ScopeInterface;
class Scope implements ScopeInterface {

View File

@ -1,5 +1,7 @@
<?php
namespace League\OAuth2\Server\Storage\Fluent;
use \League\OAuth2\Server\Storage\SessionInterface;
class Session implements SessionInterface