選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TillerClientInterface.php 203B

12345678910
  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. }