invoiceninja/app/Models/BalanceAffecting.php
Holger Lösken eb049d8ee6 Code Refactoring
- Removed unused uses
- Type hinting for method parameters
- Removed commented code
- Introduced comments for classes and methods
- Short array syntax
2016-07-03 18:11:58 +02:00

9 lines
No EOL
134 B
PHP

<?php namespace App\Models;
/**
* Interface BalanceAffecting
*/
interface BalanceAffecting
{
public function getAdjustment();
}