mitrobill/system/autoload/Balance.php

20 lines
350 B
PHP
Raw Normal View History

<?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){
}
}