@@ -31,7 +31,7 @@ |
||
31 | 31 | * Gets or sets the inner value. |
32 | 32 | * |
33 | 33 | * @param bool ...$value |
34 | - * @param bool[] $value |
|
34 | + * @param boolean[] $value |
|
35 | 35 | * @return bool |
36 | 36 | */ |
37 | 37 | public function value(...$value) |
@@ -31,7 +31,7 @@ |
||
31 | 31 | * Gets or sets the inner value. |
32 | 32 | * |
33 | 33 | * @param float ...$value |
34 | - * @param float[] $value |
|
34 | + * @param double[] $value |
|
35 | 35 | * @return float |
36 | 36 | */ |
37 | 37 | public function value(...$value) |
@@ -31,7 +31,7 @@ |
||
31 | 31 | * Gets or sets the inner value. |
32 | 32 | * |
33 | 33 | * @param int ...$value |
34 | - * @param int[] $value |
|
34 | + * @param integer[] $value |
|
35 | 35 | * @return int |
36 | 36 | */ |
37 | 37 | public function value(...$value) |
@@ -31,7 +31,7 @@ |
||
31 | 31 | * Gets or sets the inner value. |
32 | 32 | * |
33 | 33 | * @param float ...$value |
34 | - * @param float[] $value |
|
34 | + * @param double[] $value |
|
35 | 35 | * @return float |
36 | 36 | */ |
37 | 37 | public function value(...$value) |
@@ -3,10 +3,10 @@ |
||
3 | 3 | namespace AlgoWeb\ODataMetadata\Interfaces; |
4 | 4 | |
5 | 5 | interface IComplexType{ |
6 | - /** |
|
7 | - * Gets as name |
|
8 | - * |
|
9 | - * @return string |
|
10 | - */ |
|
6 | + /** |
|
7 | + * Gets as name |
|
8 | + * |
|
9 | + * @return string |
|
10 | + */ |
|
11 | 11 | public function getName(); |
12 | 12 | } |
13 | 13 | \ No newline at end of file |
@@ -3,22 +3,22 @@ |
||
3 | 3 | namespace AlgoWeb\ODataMetadata\Interfaces; |
4 | 4 | |
5 | 5 | interface IEntityType{ |
6 | - /** |
|
7 | - * Gets as name |
|
8 | - * |
|
9 | - * @return string |
|
10 | - */ |
|
6 | + /** |
|
7 | + * Gets as name |
|
8 | + * |
|
9 | + * @return string |
|
10 | + */ |
|
11 | 11 | public function getName(); |
12 | 12 | /** |
13 | - * Gets as baseType |
|
14 | - * |
|
15 | - * @return string |
|
16 | - */ |
|
13 | + * Gets as baseType |
|
14 | + * |
|
15 | + * @return string |
|
16 | + */ |
|
17 | 17 | public function getBaseType(); |
18 | 18 | /** |
19 | - * Gets as abstract |
|
20 | - * |
|
21 | - * @return boolean |
|
22 | - */ |
|
19 | + * Gets as abstract |
|
20 | + * |
|
21 | + * @return boolean |
|
22 | + */ |
|
23 | 23 | public function getAbstract(); |
24 | 24 | } |
25 | 25 | \ No newline at end of file |
@@ -11,17 +11,17 @@ |
||
11 | 11 | public function getName(); |
12 | 12 | |
13 | 13 | /** |
14 | - * Gets as returnType |
|
15 | - * |
|
16 | - * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionImportReturnTypeType[] |
|
17 | - */ |
|
14 | + * Gets as returnType |
|
15 | + * |
|
16 | + * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionImportReturnTypeType[] |
|
17 | + */ |
|
18 | 18 | public function getReturnType(); |
19 | 19 | |
20 | 20 | /** |
21 | - * Adds as parameter |
|
22 | - * |
|
23 | - * @return self |
|
24 | - * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionImportParameterType $parameter |
|
25 | - */ |
|
21 | + * Adds as parameter |
|
22 | + * |
|
23 | + * @return self |
|
24 | + * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionImportParameterType $parameter |
|
25 | + */ |
|
26 | 26 | public function addToParameter(TFunctionImportParameterType $parameter); |
27 | 27 | } |
28 | 28 | \ No newline at end of file |