2017-01-30 21:40:43 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
2015-10-28 21:22:07 +02:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
2017-01-30 21:40:43 +02:00
|
|
|
* Interface BalanceAffecting.
|
2016-07-03 18:11:58 +02:00
|
|
|
*/
|
2015-10-28 21:22:07 +02:00
|
|
|
interface BalanceAffecting
|
|
|
|
|
{
|
|
|
|
|
public function getAdjustment();
|
2017-01-30 18:05:31 +02:00
|
|
|
}
|