Files
api/services/nginx/app/interfaces/statistics_i.php
T
Jepp9350 e09eedb010 Add statistics feature with bookings tracking functionality
Introduce a scalable statistics architecture including `statistics` class, interface, and related implementations. Added support for tracking new bookings with routes and data handling through `bookings_s` and `statistic_t`. Integrated the feature into the application using autoloaders and response mechanisms.
2025-01-31 12:32:22 +01:00

14 lines
209 B
PHP

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