Current Path : /home/c/i/n/cinepatreb/billetterie/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ |
Current File : /home/c/i/n/cinepatreb/billetterie/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/OrderBy.php |
<?php declare(strict_types=1); namespace Doctrine\ORM\Mapping; use Attribute; use Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor; /** * @Annotation * @NamedArgumentConstructor() * @Target("PROPERTY") */ #[Attribute(Attribute::TARGET_PROPERTY)] final class OrderBy implements Annotation { /** @var array<string> */ public $value; /** * @param array<string> $value */ public function __construct(array $value) { $this->value = $value; } }