1. Go to this page and download the library: Download toobo/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/ */
toobo / enum example snippets
use Toobo\Enum;
class PostStatus extends Enum
{
public const PUBLISH = 'publish';
public const DRAFT = 'draft';
public const TRASH = 'trash';
}
use Toobo\Enum;
/**
* @method static Result OK($thing)
* @method static Error ERROR(string $message)
*/
class Result extends Enum
{
public const OK = 'ok';
public const ERROR = Error::class;
private $wrapped;
/**
* Param is optional: `Result::OK()` and `Result::OK($thing)` are both fine.
*/
public function hydrateOk($thing = null)
{
$this->wrapped = $thing;
}
public function unwrap()
{
return $this->wrapped;
}
public function isError(): bool
{
return false;
}
}
final class Error extends Result
{
/**
* Param is
$this->wrapped = new \Error($thing)
}
public function unwrap()
{
throw $this->wrapped;
}
public function isError(): bool
{
return true;
}
}
function safeJsonDecode(string $thing): Result
{
$decoded = @json_decode($thing);
if (json_last_error()) {
return Result::ERROR(json_last_error_msg());
}
return Result::OK($decoded);
}
public function is(Enum $enum): bool
{
$areSame = $this->looksLike($enum);
if ($areSame !== null) {
return $areSame;
}
// Make sure we compare date in the same timezone
$enumDate = $enum->date->setTimezone($this->date->getTimezone());
return $enumDate->format('Ymd') === $this->date->format('Ymd');
}
use Toobo\Enum;
/**
* @method static User ACTIVE(int $id, string $name = 'unknown')
* @method static User NOT_ACTIVE(int $id, string $name = 'unknown')
*/
final class User extends Enum
{
public const ACTIVE = 'active';
public const NOT_ACTIVE = 'not-active';
public $id = -1;
public $name = 'N/D';
public function hydrate(int $id, string $name = 'N/D')
{
$this->id = $id;
$this->name = $name;
}
}
function greet(User $user)
{
$user->match(
[User::ACTIVE, function (User $user) {
print "Welcome back {$user->name}!";
}],
[User::NOT_ACTIVE, function (User $user) {
print "Hi {$user->name}, please activate your account.";
}],
[User::ACTIVE(User::_, 'root'), function () {
print 'Hello Administrator!';
}],
);
}
greet(User::ACTIVE(2, 'Jane'));
// "Welcome back Jane!"
greet(User::NOT_ACTIVE(5, 'John'));
// "Hi John, please activate your account."
greet(User::ACTIVE(123, 'root'));
// "Hello Administrator!"
function greet(User $user)
{
switch (true) {
case $user->isVariant(User::NOT_ACTIVE)):
print "Hi {$user->name}, please activate your account.";
break;
case $user->is(User::ACTIVE(User::_, 'root')):
print 'Hello Administrator!';
break;
default:
print "Hi {$user->name}, please activate your account.";
}
}
/**
* @var Response|Enum<string, int> $response
*/
function dispatch(Response $response)
{
$response->match(
[Response::REDIRECT, new Handler\Redirect()],
[Response::ERROR, new Handler\Error()],
[Response::SUCCESS, new Handler\Success()],
[Response::ERROR(Response::_, 404), new Handler\NotFoundError()],
);
}
/** @var callable $dispatcher */
$dispatcher = Response::matcher(
$response->match(
[Response::REDIRECT, new Handler\Redirect()],
[Response::ERROR, new Handler\Error()],
[Response::SUCCESS, new Handler\Success()],
[Response::ERROR(Response::_, 404), new Handler\NotFound()],
);
);
// $dispatcher($response);
final class Move extends Enum
{
public const LX = 'left';
public const RX = 'right';
private $steps = 0;
public function hydrate(int $steps)
{
$this->steps = $steps;
}
public function steps(): int
{
return $this->steps;
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.