| 1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * API class for Reservation
- *
- * @access protected
- * @class DolibarrApiAccess {@requires user,external}
- */
- class ApiReservation extends DolibarrApi
- {
- /**
- * Report
- *
- * @param int $facility_id Facility Id
- * @param int $area_id Area Id
- * @param int $areaLanes Lanes of the area
- *
- *
- * @return array|mixed Data without useless information
- *
- * @url POST CreateReport
- */
- public function CreateReport($facility_id, $area_id, $areaLanes)
- {
- $array = [];
- return $array;
- }
- }
|