for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the wannanbigpig/alipay-sdk-php.
*
* (c) wannanbigpig <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace EasyAlipay\BaseService;
use EasyAlipay\Kernel\ServiceContainer;
/**
* Class Application
* @author liuml <[email protected]>
* @DateTime 2019-07-18 16:13
* @property Auth\Client $auth
* @property User\Client $user
* @method mixed queryAppAuthToken(string $appAuthToken)
class Application extends ServiceContainer
{
* @var array
protected $providers = [
'auth' => Auth\Client::class,
'user' => User\Client::class,
];
* __call.
* @param $name
* @param $arguments
* @return mixed
public function __call($name, $arguments)
return call_user_func_array([$this['base'], $name], $arguments);
}