Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class EdmDirectValueAnnotation extends EdmNamedElement implements IDirectValueAnnotation |
||
16 | { |
||
17 | /** |
||
18 | * @var mixed |
||
19 | */ |
||
20 | private $value; |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $namespaceUri; |
||
25 | |||
26 | /** |
||
27 | * Initializes a new instance of the EdmDirectValueAnnotation class. |
||
28 | * @param string $namespaceUri Namespace URI of the annotation. |
||
29 | * @param string $name Name of the annotation within the namespace. |
||
30 | * @param mixed $value Value of the annotation |
||
31 | */ |
||
32 | public function __construct(string $namespaceUri, string $name, $value = null) |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @inheritDoc |
||
41 | */ |
||
42 | public function getNamespaceUri(): string |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * @inheritDoc |
||
49 | */ |
||
50 | public function getValue() |
||
53 | } |
||
54 | } |