123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- namespace Zxing\Common;
- use ReflectionClass;
- /**
- * A general enum implementation until we got SplEnum.
- */
- final class AbstractEnum implements \Stringable
- {
- /**
- * Default value.
- */
- public const __default = null;
- /**
- * Current value.
- *
- * @var mixed
- */
- private $value;
- /**
- * Cache of constants.
- *
- * @var array<string, mixed>|null
- */
- private ?array $constants = null;
- /**
- * Creates a new enum.
- *
- * @param mixed $initialValue
- * @param boolean $strict
- */
- public function __construct($initialValue = null, private $strict = false)
- {
- $this->change($initialValue);
- }
- /**
- * Changes the value of the enum.
- *
- * @param mixed $value
- *
- * @return void
- */
- public function change($value)
- {
- if (!in_array($value, $this->getConstList(), $this->strict)) {
- throw new \UnexpectedValueException('Value not a const in enum ' . $this::class);
- }
- $this->value = $value;
- }
- /**
- * Gets all constants (possible values) as an array.
- *
- * @param boolean $includeDefault
- *
- * @return array
- */
- public function getConstList($includeDefault = true)
- {
- if ($this->constants === null) {
- $reflection = new ReflectionClass($this);
- $this->constants = $reflection->getConstants();
- }
- if ($includeDefault) {
- return $this->constants;
- }
- $constants = $this->constants;
- unset($constants['__default']);
- return $constants;
- }
- /**
- * Gets current value.
- *
- * @return mixed
- */
- public function get()
- {
- return $this->value;
- }
- /**
- * Gets the name of the enum.
- *
- * @return string
- */
- public function __toString(): string
- {
- return (string)array_search($this->value, $this->getConstList());
- }
- }
|