ion/src/Enum.php

59 lines
1.1 KiB
PHP
Raw Normal View History

2016-10-13 13:11:22 -04:00
<?php declare(strict_types=1);
/**
* Ion
*
* Building blocks for web development
*
2018-01-17 12:45:58 -05:00
* PHP version 7.1
*
* @package Ion
* @author Timothy J. Warren <tim@timshomepage.net>
2018-01-17 12:45:58 -05:00
* @copyright 2015 - 2018 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 2.3.0
* @link https://git.timshomepage.net/timw4mail/ion
*/
namespace Aviat\Ion;
use ReflectionClass;
/**
* Class emulating an enumeration type
*/
abstract class Enum {
/**
* Return the list of constant values for the Enum
*
* @return array
* @throws \ReflectionException
*/
public static function getConstList(): array
{
2017-02-22 15:41:30 -05:00
static $self;
2018-01-17 15:32:41 -05:00
if ($self === NULL)
2017-02-22 15:41:30 -05:00
{
2018-01-17 15:32:41 -05:00
$class = static::class;
2017-02-22 15:41:30 -05:00
$self = new $class;
}
2017-02-22 15:41:30 -05:00
$reflect = new ReflectionClass($self);
return $reflect->getConstants();
}
/**
* Verify that a constant value is valid
*
2016-08-26 17:21:50 -04:00
* @param mixed $key
* @return boolean
* @throws \ReflectionException
*/
public static function isValid($key): bool
{
2017-02-22 15:41:30 -05:00
$values = array_values(static::getConstList());
2018-01-17 15:32:41 -05:00
return \in_array($key, $values, TRUE);
}
}
// End of Enum.php