Skip to content

Instantly share code, notes, and snippets.

@edgrosvenor
Last active April 6, 2026 19:11
Show Gist options
  • Select an option

  • Save edgrosvenor/06a3d821438bda870315201c2e77e510 to your computer and use it in GitHub Desktop.

Select an option

Save edgrosvenor/06a3d821438bda870315201c2e77e510 to your computer and use it in GitHub Desktop.
Fat Enums: Bitmask cast for multiple enum states in one column
<?php
declare(strict_types=1);
namespace App\Enums;
enum Permission: int
{
case ViewReports = 0x1 << 0;
case EditContent = 0x1 << 1;
case ManageUsers = 0x1 << 2;
case DeleteRecords = 0x1 << 3;
case AdminAccess = 0x1 << 4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment