Skip to content

Commit 2ee18bf

Browse files
author
sangeet-joy_xero
committed
NiCategoryLetter enum ordering changed
1 parent 242f117 commit 2ee18bf

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lib/Models/PayrollUk/NICategoryLetter.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,20 @@ class NICategoryLetter
4848
const A = 'A';
4949
const B = 'B';
5050
const C = 'C';
51-
const D = 'D';
52-
const E = 'E';
5351
const F = 'F';
5452
const H = 'H';
5553
const I = 'I';
5654
const J = 'J';
57-
const K = 'K';
5855
const L = 'L';
5956
const M = 'M';
60-
const N = 'N';
6157
const S = 'S';
6258
const V = 'V';
6359
const X = 'X';
6460
const Z = 'Z';
61+
const D = 'D';
62+
const E = 'E';
63+
const K = 'K';
64+
const N = 'N';
6565

6666
/**
6767
* Gets allowable values of the enum
@@ -73,20 +73,20 @@ public static function getAllowableEnumValues()
7373
self::A,
7474
self::B,
7575
self::C,
76-
self::D,
77-
self::E,
7876
self::F,
7977
self::H,
8078
self::I,
8179
self::J,
82-
self::K,
8380
self::L,
8481
self::M,
85-
self::N,
8682
self::S,
8783
self::V,
8884
self::X,
8985
self::Z,
86+
self::D,
87+
self::E,
88+
self::K,
89+
self::N,
9090
];
9191
}
9292
}

0 commit comments

Comments
 (0)