Code cleanup before release.

This commit is contained in:
James Cole
2018-03-29 19:01:47 +02:00
parent 40266c6821
commit 170d23d768
76 changed files with 181 additions and 171 deletions

View File

@@ -33,43 +33,43 @@ class AccountType extends Model
/**
*
*/
const DEFAULT = 'Default account';
public const DEFAULT = 'Default account';
/**
*
*/
const CASH = 'Cash account';
public const CASH = 'Cash account';
/**
*
*/
const ASSET = 'Asset account';
public const ASSET = 'Asset account';
/**
*
*/
const EXPENSE = 'Expense account';
public const EXPENSE = 'Expense account';
/**
*
*/
const REVENUE = 'Revenue account';
public const REVENUE = 'Revenue account';
/**
*
*/
const INITIAL_BALANCE = 'Initial balance account';
public const INITIAL_BALANCE = 'Initial balance account';
/**
*
*/
const BENEFICIARY = 'Beneficiary account';
public const BENEFICIARY = 'Beneficiary account';
/**
*
*/
const IMPORT = 'Import account';
public const IMPORT = 'Import account';
/**
*
*/
const RECONCILIATION = 'Reconciliation account';
public const RECONCILIATION = 'Reconciliation account';
/**
*
*/
const LOAN = 'Loan';
public const LOAN = 'Loan';
/**
* The attributes that should be casted to native types.
*