| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class EdmEntitySetReferenceExpression extends EdmElement implements IEntitySetReferenceExpression |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var IEntitySet |
||
| 20 | */ |
||
| 21 | private $referencedEntitySet; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Initializes a new instance of the EdmEntitySetReferenceExpression class. |
||
| 25 | * @param IEntitySet $referencedEntitySet Referenced entity set. |
||
| 26 | */ |
||
| 27 | public function __construct(IEntitySet $referencedEntitySet) |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @inheritDoc |
||
| 34 | */ |
||
| 35 | public function getReferencedEntitySet(): IEntitySet |
||
| 36 | { |
||
| 37 | return $this->referencedEntitySet; |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @inheritDoc |
||
| 42 | */ |
||
| 43 | public function getExpressionKind(): ExpressionKind |
||
| 46 | } |
||
| 47 | } |