for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
declare(strict_types=1);
namespace Overblog\GraphQLBundle\Annotation;
use Doctrine\Common\Annotations\AnnotationException;
abstract class Annotation
{
protected function cumulatedAttributesException(string $attribute, string $value, string $attributeValue): void
$annotationName = str_replace('Overblog\GraphQLBundle\Annotation\\', '', get_class($this));
throw new AnnotationException(sprintf('The @%s %s is defined by both the default attribute "%s" and the %s attribute "%s". Pick one.', $annotationName, $attribute, $value, $attribute, $attributeValue));
}