This commit is contained in:
Dennis Eichhorn 2018-02-03 13:09:09 +01:00
parent 444c0a60ce
commit 5d6b2f8226
2 changed files with 3 additions and 4 deletions

View File

@ -19,7 +19,6 @@ use phpOMS\Module\UpdateAbstract;
use phpOMS\System\File\Directory;
use phpOMS\Module\InfoManager;
/**
* Navigation class.
*

View File

@ -27,7 +27,7 @@ use phpOMS\Stdlib\Base\Enum;
abstract class AccountType extends Enum
{
/* public */ const IMPERSONAL = 0;
/* public */ const PERSONAL = 1;
/* public */ const CREDITOR = 2;
/* public */ const DEBITOR = 4;
/* public */ const PERSONAL = 1;
/* public */ const CREDITOR = 2;
/* public */ const DEBITOR = 4;
}