You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ForumFlarumClient.php 196B

10 月之前
1234567891011
  1. <?php
  2. namespace common\components;
  3. class ForumFlarumClient extends AbstractApi
  4. {
  5. public function getLastDiscussions()
  6. {
  7. return $this->get('discussions', ['offset' => 1]);
  8. }
  9. }