for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\Tests\Annotations\Fixtures\Metadata;
use Doctrine\Annotations\Metadata\AnnotationMetadata;
use Doctrine\Annotations\Metadata\AnnotationTarget;
use Doctrine\Tests\Annotations\Fixtures\AnnotationWithConstructor;
final class AnnotationWithConstructorMetadata
{
public static function get(): AnnotationMetadata
return new AnnotationMetadata(
AnnotationWithConstructor::class,
new AnnotationTarget(AnnotationTarget::TARGET_ALL),
true,
[]
);
}