fix const alignment

This commit is contained in:
Dennis Eichhorn 2020-09-01 07:38:02 +02:00
parent cf05ec1515
commit 4f270676f4
3 changed files with 13 additions and 13 deletions

View File

@ -28,9 +28,9 @@ abstract class AccountType extends Enum
{
public const IMPERSONAL = 0;
public const PERSONAL = 1;
public const PERSONAL = 1;
public const CREDITOR = 2;
public const CREDITOR = 2;
public const DEBITOR = 4;
public const DEBITOR = 4;
}

View File

@ -26,21 +26,21 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class PermissionState extends Enum
{
public const PERSONAL = 1;
public const PERSONAL = 1;
public const IMPERSONAL = 2;
public const IMPERSONAL = 2;
public const JOURNAL = 3;
public const JOURNAL = 3;
public const STACK = 4;
public const STACK = 4;
public const GL = 5;
public const GL = 5;
public const COST_CENTER = 6;
public const COST_OBJECT = 7;
public const ACCOUNT = 8;
public const ACCOUNT = 8;
public const ENTRY = 9;
public const ENTRY = 9;
}

View File

@ -26,11 +26,11 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class TimeRangeType extends Enum
{
public const ENTRY_DATE = 0; /* Date of when the entry happened */
public const ENTRY_DATE = 0; /* Date of when the entry happened */
public const DUE_DATE = 1; /* Date of when the entry is due (only for invoices) */
public const DUE_DATE = 1; /* Date of when the entry is due (only for invoices) */
public const RECEIPT_DATE = 2; /* Date of the receipt */
public const RECEIPT_DATE = 2; /* Date of the receipt */
public const ASSOCIATED_DATE = 3; /* Date of the association (e.g. when did the articles arrive) */
}