Linker.php 734 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace addons\shopro\library\chat;
  3. class Linker
  4. {
  5. public $data = [];
  6. public $linker = null;
  7. public function __construct($client_id, $data)
  8. {
  9. $this->data = $data;
  10. $identify = $data['identify'];
  11. $identify = "\\addons\\shopro\\library\\chat\\linker\\" . ucfirst(camelize($identify));
  12. if (!class_exists($identify)) {
  13. // 连接身份不存在
  14. }
  15. $this->linker = new $identify($this, $client_id, $data);
  16. }
  17. public function linker() {
  18. return $this->linker;
  19. }
  20. // 代理身份相关的方法
  21. public function __call($method, $parameters)
  22. {
  23. return $this->linker()->{$method}(...$parameters);
  24. }
  25. }