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.
12 lines
220 B
PHP
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;
|
|
} |