for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\Annotations\Metadata\Exception;
use InvalidArgumentException;
use function sprintf;
final class InvalidAnnotationTarget extends InvalidArgumentException
{
public static function new(int $target) : self
return new self(sprintf('Annotation target %d is not valid bitmask of allowed targets.', $target));
}