1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace crmeb\services\wechat;
- use crmeb\services\wechat;
- class Factory
- {
-
- public static function make($name, array $config)
- {
- $namespace = \EasyWeChat\Kernel\Support\Str::studly($name);
- $application = "crmeb\\services\\wechat\\{$namespace}\\Application";
- return new $application($config);
- }
-
- public static function __callStatic($name, $arguments)
- {
- return self::make($name, ...$arguments);
- }
- }
|