Changing Case in namespaces

This commit is contained in:
Daniel Horrigan 2013-01-04 14:55:13 -05:00
parent a3fd22b3dd
commit 373ddf9f34
3 changed files with 4 additions and 4 deletions

View File

@ -35,10 +35,10 @@
], ],
"autoload": { "autoload": {
"psr-0": { "psr-0": {
"Oauth2": "src/" "OAuth2": "src/"
} }
}, },
"suggest": { "suggest": {
"lncd/oauth2-facebook": "Adds support for Facebook as an IDP" "lncd/oauth2-facebook": "Adds support for Facebook as an IDP"
} }
} }

View File

@ -1,6 +1,6 @@
<?php <?php
namespace Oauth2\Authentication; namespace OAuth2\Authentication;
interface Database interface Database
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace Oauth2\Authentication; namespace OAuth2\Authentication;
class ClientException extends \Exception class ClientException extends \Exception
{ {