您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
203B

  1. <?php
  2. namespace common\components\Tiller;
  3. interface TillerClientInterface
  4. {
  5. public function isAuthenticated(): bool;
  6. public function getOrders($date);
  7. public function postOrder($params);
  8. }