Skip to content

Instantly share code, notes, and snippets.

@iluuu1994
Last active June 7, 2020 13:54
Show Gist options
  • Save iluuu1994/b6614f2db0b1f6e733638e0fc972da4b to your computer and use it in GitHub Desktop.
Save iluuu1994/b6614f2db0b1f6e733638e0fc972da4b to your computer and use it in GitHub Desktop.
Boundaries enum example
<?php
enum Boundaries
{
case includeNone;
case includeStart;
case includeEnd;
case includeAll;
public function startIncluded(): bool
{
return match ($this) {
self::includeStart, self::includeAll => true,
default => false,
};
}
public function endIncluded(): bool
{
return match ($this) {
self::includeEnd, self::includeAll => true,
default => false,
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment