Skip to content

Commit

Permalink
optimize namespace import
Browse files Browse the repository at this point in the history
  • Loading branch information
justmd5 committed Mar 14, 2022
1 parent 1b3d5a0 commit e0c3609
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/PinDuoDuo.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,22 @@
namespace Justmd5\PinDuoDuo;

use Hanson\Foundation\Foundation;
use Justmd5\PinDuoDuo\Oauth\Oauth;
use Justmd5\PinDuoDuo\Oauth\PreAuth;

/**
* Class PinDuoDuo.
*
* @property \Justmd5\PinDuoDuo\Api $api
* @property \Justmd5\PinDuoDuo\Api $auth_api
* @property \Justmd5\PinDuoDuo\AccessToken $access_token
* @property \Justmd5\PinDuoDuo\Oauth\PreAuth $pre_auth
* @property \Justmd5\PinDuoDuo\Oauth\Oauth $oauth
* @property Api $api
* @property Api $auth_api
* @property AccessToken $access_token
* @property PreAuth $pre_auth
* @property Oauth $oauth
*/
class PinDuoDuo extends Foundation
{
protected $providers = [
ServiceProvider::class,
Oauth\ServiceProvider::class,
\Justmd5\PinDuoDuo\Oauth\ServiceProvider::class,
];
}

0 comments on commit e0c3609

Please sign in to comment.