. */ namespace Doctrine\ORM\Mapping; /** * Is used to specify an array of native SQL named queries. * The NamedNativeQueries annotation can be applied to an entity or mapped superclass. * * @author Fabio B. Silva * @since 2.3 * * @Annotation * @Target("CLASS") */ final class NamedNativeQueries implements Annotation { /** * One or more NamedNativeQuery annotations. * * @var array<\Doctrine\ORM\Mapping\NamedNativeQuery> */ public $value = array(); }