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.
28 lines
505 B
PHP
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;
|
|
} |