relation.php 598 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @param int $buildID
  4. * @param mixed[] $storyIdList
  5. */
  6. public function linkStory($buildID, $storyIdList)
  7. {
  8. return $this->loadExtension('relation')->linkStory($buildID, $storyIdList);
  9. }
  10. /**
  11. * @param int $buildID
  12. * @param int $storyID
  13. */
  14. public function unlinkStory($buildID, $storyID)
  15. {
  16. return $this->loadExtension('relation')->unlinkStory($buildID, $storyID);
  17. }
  18. /**
  19. * @param int $buildID
  20. * @param mixed[] $storyIDList
  21. */
  22. public function batchUnlinkStory($buildID, $storyIDList)
  23. {
  24. return $this->loadExtension('relation')->batchUnlinkStory($buildID, $storyIDList);
  25. }