@@ -37,7 +37,7 @@ |
||
37 | 37 | * @param QueryType $queryType indicates if this is a query for a count, entities, or entities with a count |
38 | 38 | * @param ResourceSet $resourceSet The entity set containing the entities to fetch |
39 | 39 | * @param FilterInfo $filterInfo represents the $filter parameter of the OData query. NULL if no $filter specified |
40 | - * @param mixed $orderBy sorted order if we want to get the data in some specific order |
|
40 | + * @param null|\POData\UriProcessor\QueryProcessor\OrderByParser\InternalOrderByInfo $orderBy sorted order if we want to get the data in some specific order |
|
41 | 41 | * @param int $top number of records which need to be skip |
42 | 42 | * @param string $skipToken value indicating what records to skip |
43 | 43 | * |
@@ -3,7 +3,7 @@ |
||
3 | 3 | |
4 | 4 | class XML2Array |
5 | 5 | { |
6 | - /** |
|
6 | + /** |
|
7 | 7 | * @var string |
8 | 8 | */ |
9 | 9 | private static $encoding = 'UTF-8'; |
@@ -14,7 +14,7 @@ |
||
14 | 14 | /** |
15 | 15 | * Convert an XML to Array. |
16 | 16 | * |
17 | - * @param string|\DOMDocument $input_xml |
|
17 | + * @param string $input_xml |
|
18 | 18 | * |
19 | 19 | * @return array |
20 | 20 | * |