1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Annotation;
6
7/**
8 * @Annotation
9 * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
10 */
11final class Until extends Version
12{
13}
14