set days of week using bitwise operators

This commit is contained in:
Nabeel Shahzad
2017-08-16 08:29:05 -05:00
parent 073af3e949
commit 6b20ea6f16
3 changed files with 47 additions and 0 deletions

View File

@@ -26,5 +26,15 @@ return [
'MOGAS' => 2,
],
'days' => [
'MONDAY' => 1,
'TUESDAY' => 2,
'WEDNESDAY' => 4,
'THURSDAY' => 8,
'FRIDAY' => 16,
'SATURDAY' => 32,
'SUNDAY' => 64
],
];