for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the overtrue/wechat.
*
* (c) overtrue <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace EasyWeChat\QQMiniProgram;
use EasyWeChat\BasicService;
use EasyWeChat\Kernel\ServiceContainer;
/**
* Class Application.
* @author mingyoung <[email protected]>
* @property \EasyWeChat\MiniProgram\Auth\Client $auth
class Application extends ServiceContainer
{
* @var array
protected $providers = [
Auth\ServiceProvider::class,
// Base services
BasicService\Media\ServiceProvider::class,
BasicService\ContentSecurity\ServiceProvider::class,
];
protected $defaultConfig = [
'http' => [
'base_uri' => 'https://api.q.qq.com/',
],
* Handle dynamic calls.
* @param string $method
* @param array $args
* @return mixed
public function __call($method, $args)
return $this->base->$method(...$args);
base
EasyWeChat\QQMiniProgram\Application
__get
}