for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Digia\GraphQL\Language\AST\Node;
trait DirectivesTrait
{
/**
* @var DirectiveNode[]
*/
protected $directives;
* @return DirectiveNode[]
public function getDirectives(): array
return $this->directives;
}
* @return array
public function getDirectivesAsArray(): array
// TODO: Implement this method.
return [];