for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Digia\GraphQL\Type\Definition;
trait DefaultValueTrait
{
/**
* @var mixed
*/
protected $defaultValue;
* @return mixed
public function getDefaultValue()
return $this->defaultValue;
}