for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Digia\GraphQL\Util;
abstract class AbstractEnum
{
/**
* @return array
* @throws \ReflectionException
*/
public static function values(): array
return \array_values((new \ReflectionClass(__CLASS__))->getConstants());
}