Skip to content

Commit

Permalink
Tweak some namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
jenssegers committed Oct 13, 2014
1 parent 74f9623 commit 96afaad
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/Facades/OAuth.php
Expand Up @@ -2,8 +2,8 @@

use Illuminate\Support\Facades\Facade;

class OAuth extends Facade
{
class OAuth extends Facade {

/**
* Get the registered name of the component.
*
Expand Down
14 changes: 6 additions & 8 deletions src/OAuth.php
@@ -1,14 +1,12 @@
<?php namespace Jenssegers\OAuth;

use \App;
use \Config;
use \URL;
use \OAuth\ServiceFactory;
use \OAuth\Common\Consumer\Credentials;
use \OAuth\Common\Storage\TokenStorageInterface;
use App, Config, URL;
use OAuth\ServiceFactory;
use OAuth\Common\Consumer\Credentials;
use OAuth\Common\Storage\TokenStorageInterface;

class OAuth {

class OAuth
{
/**
* OAuth Service Factory instance.
*
Expand Down
6 changes: 3 additions & 3 deletions src/OAuthServiceProvider.php
@@ -1,8 +1,8 @@
<?php namespace Jenssegers\OAuth;

use \Illuminate\Support\ServiceProvider;
use \OAuth\ServiceFactory;
use \OAuth\Common\Storage\SymfonySession;
use Illuminate\Support\ServiceProvider;
use OAuth\ServiceFactory;
use OAuth\Common\Storage\SymfonySession;

class OAuthServiceProvider extends ServiceProvider {

Expand Down

0 comments on commit 96afaad

Please sign in to comment.