@@ -81,7 +81,7 @@ discard block |
||
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 |
||
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 |
||
203 | 203 | } |
204 | 204 | |
205 | 205 | /** |
206 | - * @param DOMNodeList $links |
|
206 | + * @param \DOMNodeList $links |
|
207 | 207 | */ |
208 | 208 | protected function GetRelatedLinks($links) |
209 | 209 | { |
@@ -4,7 +4,6 @@ |
||
4 | 4 | use DOMDocument; |
5 | 5 | use ReflectionClass; |
6 | 6 | use ReflectionProperty; |
7 | -use POData\Readers\IODataReader; |
|
8 | 7 | |
9 | 8 | class AtomODataReader |
10 | 9 | { |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | 'default' => 'http://www.w3.org/2005/Atom', |
15 | 15 | 'd' => 'http://schemas.microsoft.com/ado/2007/08/dataservices', |
16 | 16 | 'm' => 'http://schemas.microsoft.com/ado/2007/08/dataservices/metadata' |
17 | - ); |
|
17 | + ); |
|
18 | 18 | protected static $QUERY_ROOT_FEED = '/default:feed'; |
19 | 19 | protected static $QUERY_ROOT_ENTRY = '/default:entry'; |
20 | 20 | protected static $QUERY_TITLE = 'default:title'; |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | ($attributes['EdmType'] == 'Edm.Int16' || |
346 | 346 | $attributes['EdmType'] == 'Edm.Int32' || |
347 | 347 | $attributes['EdmType'] == 'Edm.Int64')))) { |
348 | - $value = '0'; |
|
348 | + $value = '0'; |
|
349 | 349 | } |
350 | 350 | } else { |
351 | 351 | $value = null; |
@@ -57,7 +57,7 @@ |
||
57 | 57 | resourceProperty, |
58 | 58 | skipTokenParser, |
59 | 59 | expandProjectionParser, |
60 | - IService,navigation, |
|
60 | + IService, navigation, |
|
61 | 61 | queryProvider, |
62 | 62 | resourceSet, |
63 | 63 | streamProviderWrapper, |