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