Completed
Pull Request — master (#12)
by Christopher
04:04
created
src/POData/Providers/Query/IQueryProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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
      *
Please login to merge, or discard this patch.
src/POData/UriProcessor/XML2Array.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
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
      *
Please login to merge, or discard this patch.
src/POData/Readers/Atom/AtomODataReader.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     }
82 82
 
83 83
     /**
84
-     * @param DOMNode $feed
84
+     * @param \DOMNode $feed
85 85
      */
86 86
     protected function EnumerateFeed($feed, &$feedType, $parentObject = null)
87 87
     {
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     }
119 119
 
120 120
     /**
121
-     * @param DOMNode $entry
121
+     * @param \DOMNode $entry
122 122
      */
123 123
     protected function EnumerateEntry($entry, &$entityType, $parentObject = null)
124 124
     {
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
     }
204 204
 
205 205
     /**
206
-     * @param DOMNodeList $links
206
+     * @param \DOMNodeList $links
207 207
      */
208 208
     protected function GetRelatedLinks($links)
209 209
     {
Please login to merge, or discard this patch.