Files
api/services/nginx/app/modules/economic/economic_helpers.php
T
Jepp9350 143b024f78 Introduce Economic customer helper class and customer route
Added a helper class `economic_customer` to standardize customer data handling within the Economic API. Introduced a new route, `/modules/economic/customer`, for retrieving customers using their customer number. Updated `economic` class to integrate the helper and support streamlined customer operations.
2025-02-19 11:58:58 +01:00

12 lines
220 B
PHP

<?php
use helpers\economic_customer;
class economic_helpers
{
/**
* The Economic customer helper
* @var string $economic_customer
*/
public string $economic_customer = economic_customer::class;
}