@@ -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)) { |
@@ -44,6 +44,9 @@ discard block |
||
44 | 44 | return $this->serializer->serialize($this->V3Edmx, "xml"); |
45 | 45 | } |
46 | 46 | |
47 | + /** |
|
48 | + * @param string $name |
|
49 | + */ |
|
47 | 50 | public function addEntityType($name, $accessType = "Public", $summary = null, $longDescription = null) |
48 | 51 | { |
49 | 52 | $this->startEdmxTransaction(); |
@@ -121,6 +124,11 @@ discard block |
||
121 | 124 | $this->oldEdmx = null; |
122 | 125 | } |
123 | 126 | |
127 | + /** |
|
128 | + * @param string $name |
|
129 | + * @param string $type |
|
130 | + * @param string $storeGeneratedPattern |
|
131 | + */ |
|
124 | 132 | public function addPropertyToEntityType( |
125 | 133 | $entityType, |
126 | 134 | $name, |
@@ -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; |