| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | trait HasEntitySetReferenceExpression |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var EntitySet $entitySetReference |
||
| 22 | */ |
||
| 23 | private $entitySetReference = null; |
||
| 24 | |||
| 25 | |||
| 26 | /** |
||
| 27 | * Gets as entitySetReference. |
||
| 28 | * |
||
| 29 | * @return EntitySet |
||
| 30 | */ |
||
| 31 | public function getEntitySetReference(): EntitySet |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Sets a new entitySetReference. |
||
| 38 | * |
||
| 39 | * @param EntitySet $entitySetReference |
||
| 40 | * @return self |
||
| 41 | */ |
||
| 42 | public function setEntitySetReference(EntitySet $entitySetReference): self |
||
| 48 |