for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\Annotations\Metadata\Assembler;
use Doctrine\Annotations\Metadata\AnnotationMetadata;
use Doctrine\Annotations\Parser\Ast\Reference;
use Doctrine\Annotations\Parser\Scope;
/**
* @internal
*/
interface AnnotationMetadataAssembler
{
public function assemble(Reference $reference, Scope $scope): AnnotationMetadata;
}