@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | * |
| 63 | 63 | * @return ODataPropertyContent |
| 64 | 64 | */ |
| 65 | - public function writeTopLevelComplexObject(&$complexValue, $propertyName, ResourceType &$resourceType); |
|
| 65 | + public function writeTopLevelComplexObject(&$complexValue, $propertyName, ResourceType & $resourceType); |
|
| 66 | 66 | |
| 67 | 67 | /** |
| 68 | 68 | * Write top level bag resource. |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | * |
| 77 | 77 | * @return ODataPropertyContent |
| 78 | 78 | */ |
| 79 | - public function writeTopLevelBagObject(&$BagValue, $propertyName, ResourceType &$resourceType); |
|
| 79 | + public function writeTopLevelBagObject(&$BagValue, $propertyName, ResourceType & $resourceType); |
|
| 80 | 80 | |
| 81 | 81 | /** |
| 82 | 82 | * Write top level primitive value. |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | * |
| 91 | 91 | * @return ODataPropertyContent |
| 92 | 92 | */ |
| 93 | - public function writeTopLevelPrimitive(&$primitiveValue, ResourceProperty &$resourceProperty = null); |
|
| 93 | + public function writeTopLevelPrimitive(&$primitiveValue, ResourceProperty & $resourceProperty = null); |
|
| 94 | 94 | |
| 95 | 95 | /** |
| 96 | 96 | * Gets reference to the request submitted by client. |
@@ -508,8 +508,8 @@ discard block |
||
| 508 | 508 | */ |
| 509 | 509 | private function _writePrimitiveValue( |
| 510 | 510 | &$primitiveValue, |
| 511 | - ODataProperty &$odataProperty, |
|
| 512 | - ResourceProperty &$resourceProperty = null |
|
| 511 | + ODataProperty & $odataProperty, |
|
| 512 | + ResourceProperty & $resourceProperty = null |
|
| 513 | 513 | ) { |
| 514 | 514 | if (is_object($primitiveValue)) { |
| 515 | 515 | //TODO ERROR: The property 'PropertyName' |
@@ -896,7 +896,7 @@ discard block |
||
| 896 | 896 | if (28 < $resourceKind) { |
| 897 | 897 | return false; |
| 898 | 898 | } |
| 899 | - return 0 == ($resourceKind % 4); |
|
| 899 | + return 0 == ($resourceKind%4); |
|
| 900 | 900 | } |
| 901 | 901 | |
| 902 | 902 | |