for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheCodingMachine\GraphQL\Controllers;
class MissingAnnotationException extends \RuntimeException
{
public static function missingTypeException(): self
return new self('You cannot use the @ExposedField annotation without also adding a @Type annotation.');
}