forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbug-14429.php
More file actions
87 lines (72 loc) · 1.79 KB
/
bug-14429.php
File metadata and controls
87 lines (72 loc) · 1.79 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
namespace Bug14429;
interface IEntity {
/**
* @return IRepository<IEntity>
*/
public function getRepository(): IRepository;
}
interface IProperty {}
interface IPropertyContainer extends IProperty {}
/**
* @template E of IEntity
*/
interface IEntityAwareProperty extends IProperty {}
/**
* @template E of IEntity
* @extends IEntityAwareProperty<E>
*/
interface IRelationshipContainer extends IPropertyContainer, IEntityAwareProperty {}
interface IModel {
/**
* @template E of IEntity
* @template T of IRepository<E>
* @param class-string<T> $className
* @return T
*/
public function getRepository(string $className): IRepository;
}
/**
* @template E of IEntity
*/
interface IRepository {
public function getModel(): IModel;
}
class PropertyRelationshipMetadata {
/** @var class-string<IRepository<IEntity>> */
public string $repository;
}
/**
* @template E of IEntity
* @implements IRelationshipContainer<E>
*/
class HasOne implements IRelationshipContainer
{
/** @var E|null */
protected ?IEntity $parent = null;
/** @var IRepository<E>|null */
protected ?IRepository $targetRepository = null;
protected PropertyRelationshipMetadata $metadataRelationship;
/**
* @return E
*/
protected function getParentEntity(): IEntity
{
return $this->parent ?? throw new \InvalidArgumentException('Relationship is not attached to a parent entity.');
}
/**
* @return IRepository<E>
*/
protected function getTargetRepository(): IRepository
{
if ($this->targetRepository === null) {
/** @var IRepository<E> $targetRepository */
$targetRepository = $this->getParentEntity()
->getRepository()
->getModel()
->getRepository($this->metadataRelationship->repository);
$this->targetRepository = $targetRepository;
}
return $this->targetRepository;
}
}