* @copyright 2015 - 2016 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @version 1.0.0 * @link https://git.timshomepage.net/timw4mail/ion */ namespace Aviat\Ion; use ReflectionClass; /** * Class emulating an enumeration type * * @method bool isValid(mixed $key) * @method array getConstList() */ abstract class Enum { use StaticInstance; /** * Return the list of constant values for the Enum * * @return array */ protected function getConstList() { $reflect = new ReflectionClass($this); return $reflect->getConstants(); } /** * Verify that a constant value is valid * @param mixed $key * @return boolean */ protected function isValid($key) { $values = array_values($this->getConstList()); return in_array($key, $values); } } // End of Enum.php