blob: 077c558cdd9de57632dbfba5a4822aa963c14e35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Mapping\Builder;
/**
* OneToMany Association Builder
*
* @link www.doctrine-project.com
*/
class OneToManyAssociationBuilder extends AssociationBuilder
{
/**
* @psalm-param array<string, string> $fieldNames
*
* @return $this
*/
public function setOrderBy(array $fieldNames): static
{
$this->mapping['orderBy'] = $fieldNames;
return $this;
}
/** @return $this */
public function setIndexBy(string $fieldName): static
{
$this->mapping['indexBy'] = $fieldName;
return $this;
}
public function build(): ClassMetadataBuilder
{
$mapping = $this->mapping;
if ($this->joinColumns) {
$mapping['joinColumns'] = $this->joinColumns;
}
$cm = $this->builder->getClassMetadata();
$cm->mapOneToMany($mapping);
return $this->builder;
}
}
|