for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheCodingMachine\GraphQL\Controllers;
class InvalidDocBlockException extends GraphQLException
{
public static function tooManyReturnTags(\ReflectionMethod $refMethod): self
throw new self('Method '.$refMethod->getDeclaringClass()->getName().'::'.$refMethod->getName().' has several @return annotations.');
}