mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-22 23:30:58 -04:00
10 lines
135 B
PHP
10 lines
135 B
PHP
<?php namespace App\Models;
|
|
|
|
/**
|
|
* Interface BalanceAffecting
|
|
*/
|
|
interface BalanceAffecting
|
|
{
|
|
public function getAdjustment();
|
|
}
|