mitrobill/system/autoload/Balance.php
2023-08-14 14:16:56 +07:00

20 lines
350 B
PHP

<?php
/**
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
* This script is for managing user balance
**/
class Balance {
public static function add($customer, $amount, $note){
}
public static function transfer($customer, $phoneTarget){
}
public static function pay($customer, $amount, $note){
}
}