1 | <?php |
||
14 | class OneToMany extends AbstractRelation |
||
15 | { |
||
16 | use Ownable, Orderable, Indexable; |
||
17 | |||
18 | /** |
||
19 | * @var OneToManyAssociationBuilder |
||
20 | */ |
||
21 | protected $association; |
||
22 | |||
23 | /** |
||
24 | * @param ClassMetadataBuilder $builder |
||
25 | * @param string $relation |
||
26 | * @param string $entity |
||
27 | * |
||
28 | * @return OneToManyAssociationBuilder |
||
29 | */ |
||
30 | 24 | protected function createAssociation(ClassMetadataBuilder $builder, $relation, $entity) |
|
34 | } |
||
35 |