1. Go to this page and download the library: Download fatturaelettronicaphp/enum 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/ */
abstract class MonthEnum extends Enum
{
abstract public function getNumericIndex(): int;
public static function january(): MonthEnum
{
return new class() extends MonthEnum
{
public function getNumericIndex(): int
{
return 1;
}
};
}
public static function february(): MonthEnum
{
return new class() extends MonthEnum
{
public function getNumericIndex(): int
{
return 2;
}
};
}
// …
}
MonthEnum::january()->getNumericIndex()
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.