PHP code example of genkiroid / enum-generator

1. Go to this page and download the library: Download genkiroid/enum-generator library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

genkiroid / enum-generator example snippets




class UserState extends Enum
{
    const ACTIVE = 0;
    const INACTIVE = 1;
}


class ShopState extends Enum
{
    const ACTIVE = 0;
    const INACTIVE = 1;
}
sh
UserState.php
ShopState.php