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.
14 lines
209 B
PHP
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;
|
|
} |