Files
api/services/nginx/app/interfaces/statistics_i.php
T
Jepp9350 6ebea5504e Add endpoints and routes for economic statistics management
Implemented economic-related classes, endpoints, and routes to support fetching invoice totals, sent invoices, and department data. These changes enhance functionality by exposing APIs for economic statistics and integrating them into the statistics module.
2025-02-04 08:36:05 +01:00

28 lines
505 B
PHP

<?php
namespace interfaces;
use statistics\bookings_s;
use statistics\economic_s;
use statistics\orders_s;
interface statistics_i
{
/**
* Get the statistics for bookings
* @return bookings_s
*/
public function bookings(): bookings_s;
/**
* Get the statistics for orders
* @return orders_s
*/
public function orders(): orders_s;
/**
* Get the statistics for economic
* @return economic_s
*/
public function economic(): economic_s;
}