Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Created December 28, 2021 22:33
Show Gist options
  • Save ismail1432/3777334e6f3edcac8fd09b1e49b8f805 to your computer and use it in GitHub Desktop.
Save ismail1432/3777334e6f3edcac8fd09b1e49b8f805 to your computer and use it in GitHub Desktop.
<?php
namespace App;
enum Status: string {
case Draft = 'draft';
case Deleted = 'deleted';
case Published = 'published';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment