@@ -32,6 +32,7 @@ |
||
32 | 32 | * Gets or sets the inner value |
33 | 33 | * |
34 | 34 | * @param integer ...$value |
35 | + * @param integer[] $value |
|
35 | 36 | * @return integer |
36 | 37 | */ |
37 | 38 | public function value(...$value) |
@@ -37,6 +37,7 @@ |
||
37 | 37 | * Gets or sets the inner value |
38 | 38 | * |
39 | 39 | * @param string ...$value |
40 | + * @param string[] $value |
|
40 | 41 | * @return string |
41 | 42 | */ |
42 | 43 | public function value(...$value) |
@@ -37,6 +37,7 @@ |
||
37 | 37 | * Gets or sets the inner value |
38 | 38 | * |
39 | 39 | * @param string ...$value |
40 | + * @param string[] $value |
|
40 | 41 | * @return string |
41 | 42 | */ |
42 | 43 | public function value(...$value) |
@@ -37,6 +37,7 @@ |
||
37 | 37 | * Gets or sets the inner value |
38 | 38 | * |
39 | 39 | * @param string ...$value |
40 | + * @param string[] $value |
|
40 | 41 | * @return string |
41 | 42 | */ |
42 | 43 | public function value(...$value) |
@@ -32,6 +32,7 @@ |
||
32 | 32 | * Gets or sets the inner value |
33 | 33 | * |
34 | 34 | * @param \DateTime ...$value |
35 | + * @param \DateTime[] $value |
|
35 | 36 | * @return \DateTime |
36 | 37 | */ |
37 | 38 | public function value(...$value) |
@@ -8,6 +8,9 @@ |
||
8 | 8 | { |
9 | 9 | use xsdRestrictions; |
10 | 10 | |
11 | + /** |
|
12 | + * @param string $TSimpleIdentifier |
|
13 | + */ |
|
11 | 14 | protected function isTSimpleIdentifierValid($TSimpleIdentifier) |
12 | 15 | { |
13 | 16 | if (!$this->isNCName($TSimpleIdentifier)) { |
@@ -29,6 +29,9 @@ |
||
29 | 29 | $this->v3MetadataAgainstXSD($d); |
30 | 30 | } |
31 | 31 | |
32 | + /** |
|
33 | + * @param string $data |
|
34 | + */ |
|
32 | 35 | public function v3MetadataAgainstXSD($data) |
33 | 36 | { |
34 | 37 | $ds = DIRECTORY_SEPARATOR; |
@@ -47,6 +47,9 @@ discard block |
||
47 | 47 | return $this->serializer->serialize($this->V3Edmx, "xml"); |
48 | 48 | } |
49 | 49 | |
50 | + /** |
|
51 | + * @param string $name |
|
52 | + */ |
|
50 | 53 | public function addEntityType($name, $accessType = "Public", $summary = null, $longDescription = null) |
51 | 54 | { |
52 | 55 | $this->startEdmxTransaction(); |
@@ -124,6 +127,11 @@ discard block |
||
124 | 127 | $this->oldEdmx = null; |
125 | 128 | } |
126 | 129 | |
130 | + /** |
|
131 | + * @param string $name |
|
132 | + * @param string $type |
|
133 | + * @param string $storeGeneratedPattern |
|
134 | + */ |
|
127 | 135 | public function addPropertyToEntityType( |
128 | 136 | $entityType, |
129 | 137 | $name, |
@@ -164,6 +172,11 @@ discard block |
||
164 | 172 | return $NewProperty; |
165 | 173 | } |
166 | 174 | |
175 | + /** |
|
176 | + * @param string $principalMultiplicity |
|
177 | + * @param string $principalProperty |
|
178 | + * @param string $dependentMultiplicity |
|
179 | + */ |
|
167 | 180 | public function addNavigationPropertyToEntityType( |
168 | 181 | TEntityTypeType $principalType, |
169 | 182 | $principalMultiplicity, |
@@ -331,6 +344,10 @@ discard block |
||
331 | 344 | return $association; |
332 | 345 | } |
333 | 346 | |
347 | + /** |
|
348 | + * @param string $principalEntitySetName |
|
349 | + * @param string $dependentEntitySetName |
|
350 | + */ |
|
334 | 351 | protected function createAssocationSetForAssocation( |
335 | 352 | TAssociationType $association, |
336 | 353 | $principalEntitySetName, |