relation.php 409 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @return bool|int
  4. * @param object $case
  5. */
  6. public function create($case)
  7. {
  8. return $this->loadExtension('relation')->create($case);
  9. }
  10. /**
  11. * @return bool|mixed[]
  12. * @param object $case
  13. * @param object $oldCase
  14. * @param mixed[] $testtasks
  15. */
  16. public function update($case, $oldCase, $testtasks = array())
  17. {
  18. return $this->loadExtension('relation')->update($case, $oldCase, $testtasks);
  19. }