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

Promise.php 121 B

3年前
1234567891011
  1. <?php
  2. namespace think\composer;
  3. class Promise
  4. {
  5. public function then($callable)
  6. {
  7. $callable();
  8. }
  9. }