reservation_api_reservation.class.php 554 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * API class for Reservation
  4. *
  5. * @access protected
  6. * @class DolibarrApiAccess {@requires user,external}
  7. */
  8. class ApiReservation extends DolibarrApi
  9. {
  10. /**
  11. * Report
  12. *
  13. * @param int $facility_id Facility Id
  14. * @param int $area_id Area Id
  15. * @param int $areaLanes Lanes of the area
  16. *
  17. *
  18. * @return array|mixed Data without useless information
  19. *
  20. * @url POST CreateReport
  21. */
  22. public function CreateReport($facility_id, $area_id, $areaLanes)
  23. {
  24. $array = [];
  25. return $array;
  26. }
  27. }