for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Date: 07.12.15
*
* @author Portey Vasil <[email protected]>
*/
namespace Youshido\GraphQL\Type\Enum;
use Youshido\GraphQL\Config\Object\EnumTypeConfig;
final class EnumType extends AbstractEnumType
{
public function __construct(array $config)
$this->config = new EnumTypeConfig($config, $this, true);
}
public function getValues()
return $this->getConfig()->getValues();