Test Failed
Pull Request — master (#74)
by Christopher
04:34
created
src/POData/UriProcessor/UriProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
      */
209 209
     protected function executePut()
210 210
     {
211
-        return $this->executeBase(function ($uriProcessor, $segment) {
211
+        return $this->executeBase(function($uriProcessor, $segment) {
212 212
             $requestMethod = $uriProcessor->getService()->getOperationContext()->incomingRequest()->getMethod();
213 213
             $resourceSet = $segment->getTargetResourceSetWrapper();
214 214
             $keyDescriptor = $segment->getKeyDescriptor();
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      */
232 232
     protected function executeDelete()
233 233
     {
234
-        return $this->executeBase(function ($uriProcessor, $segment) {
234
+        return $this->executeBase(function($uriProcessor, $segment) {
235 235
             $requestMethod = $uriProcessor->getService()->getOperationContext()->incomingRequest()->getMethod();
236 236
             $resourceSet = $segment->getTargetResourceSetWrapper();
237 237
             $keyDescriptor = $segment->getKeyDescriptor();
Please login to merge, or discard this patch.
src/POData/UriProcessor/SegmentStack.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      *
51 51
      * @return bool true if the segment was push, false otherwise
52 52
      */
53
-    public function pushSegment($segmentName, ResourceSetWrapper &$resourceSetWrapper)
53
+    public function pushSegment($segmentName, ResourceSetWrapper & $resourceSetWrapper)
54 54
     {
55 55
         if (!is_string($segmentName)) {
56 56
             throw new InvalidOperationException('segmentName must be a string');
Please login to merge, or discard this patch.
src/POData/Writers/Json/JsonWriter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,8 +158,8 @@
 block discarded – undo
158 158
 
159 159
             case 'Edm.DateTime':
160 160
                 $dateTime = new Carbon($value, new \DateTimeZone('UTC'));
161
-                $formattedDateTime = $dateTime->format('U') * 1000;
162
-                $this->_writeCore('/Date('.$formattedDateTime.')/', /* quotes */ true);
161
+                $formattedDateTime = $dateTime->format('U')*1000;
162
+                $this->_writeCore('/Date(' . $formattedDateTime . ')/', /* quotes */ true);
163 163
                 break;
164 164
 
165 165
             case 'Edm.String':
Please login to merge, or discard this patch.
src/POData/Common/Messages/resourceAssociationType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public static function resourceAssociationTypeEndPropertyMustBeNullOrInstanceofResourceProperty($argumentName)
15 15
     {
16
-        return "The argument '".$argumentName."' must be either null or instance of 'ResourceProperty'.";
16
+        return "The argument '" . $argumentName . "' must be either null or instance of 'ResourceProperty'.";
17 17
     }
18 18
 
19 19
     /**
Please login to merge, or discard this patch.
src/POData/UriProcessor/QueryProcessor/OrderByParser/OrderByLeafNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
 
103 103
         $a = $this->_isAscending ? 1 : -1;
104 104
 
105
-        $retVal = function ($object1, $object2) use ($ancestors, $a) {
105
+        $retVal = function($object1, $object2) use ($ancestors, $a) {
106 106
             $accessor1 = $object1;
107 107
             $accessor2 = $object2;
108 108
             $flag1 = is_null($accessor1);
Please login to merge, or discard this patch.
src/POData/UriProcessor/QueryProcessor/OrderByParser/OrderByParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -400,7 +400,7 @@
 block discarded – undo
400 400
             $this->_topLevelComparisonFunction = $this->_comparisonFunctions[0];
401 401
         } else {
402 402
             $funcList = $this->_comparisonFunctions;
403
-            $this->_topLevelComparisonFunction = function ($object1, $object2) use ($funcList) {
403
+            $this->_topLevelComparisonFunction = function($object1, $object2) use ($funcList) {
404 404
                 $ret = 0;
405 405
                 foreach ($funcList as $f) {
406 406
                     $ret = $f($object1, $object2);
Please login to merge, or discard this patch.
src/POData/ObjectModel/IObjectSerialiser.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/POData/ObjectModel/ObjectModelSerializer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -508,8 +508,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/POData/Providers/Metadata/SimpleMetadataProvider.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
     {
218 218
         $this->containerName = $containerName;
219 219
         $this->namespaceName = $namespaceName;
220
-        $this->metadataManager = new MetadataManager($namespaceName,$containerName);
220
+        $this->metadataManager = new MetadataManager($namespaceName, $containerName);
221 221
     }
222 222
 
223 223
     /**
@@ -439,8 +439,8 @@  discard block
 block discarded – undo
439 439
 
440 440
         $resourceProperty = new ResourceProperty($name, null, $kind, $primitiveResourceType);
441 441
         $resourceType->addProperty($resourceProperty);
442
-        if(array_key_exists($resourceType, $this->OdataEntityMap)){
443
-            $this->metadataManager->addPropertyToEntityType($this->OdataEntityMap[$resourceType],$name,$primitiveResourceType->getFullName(),null,false,$isKey);
442
+        if (array_key_exists($resourceType, $this->OdataEntityMap)) {
443
+            $this->metadataManager->addPropertyToEntityType($this->OdataEntityMap[$resourceType], $name, $primitiveResourceType->getFullName(), null, false, $isKey);
444 444
         }
445 445
     }
446 446
 
@@ -503,11 +503,11 @@  discard block
 block discarded – undo
503 503
             new ResourceAssociationSetEnd($sourceResourceSet, $resourceType, $resourceProperty),
504 504
             new ResourceAssociationSetEnd($targetResourceSet, $targetResourceType, null)
505 505
         );
506
-        if($resourcePropertyKind == ResourcePropertyKind::RESOURCESET_REFERENCE){
506
+        if ($resourcePropertyKind == ResourcePropertyKind::RESOURCESET_REFERENCE) {
507 507
 
508
-            $this->metadataManager->addNavigationPropertyToEntityType($this->OdataEntityMap[$resourceType],"*",$name,$targetResourceType,"*");
509
-        }else{
510
-            $this->metadataManager->addNavigationPropertyToEntityType($this->OdataEntityMap[$resourceType],"0..1",$name,$this->OdataEntityMap[$targetResourceType],"0..1");
508
+            $this->metadataManager->addNavigationPropertyToEntityType($this->OdataEntityMap[$resourceType], "*", $name, $targetResourceType, "*");
509
+        } else {
510
+            $this->metadataManager->addNavigationPropertyToEntityType($this->OdataEntityMap[$resourceType], "0..1", $name, $this->OdataEntityMap[$targetResourceType], "0..1");
511 511
         }
512 512
         $this->associationSets[$setKey] = $set;
513 513
     }
@@ -538,7 +538,7 @@  discard block
 block discarded – undo
538 538
         $this->resourceTypes[$name] = $entityType;
539 539
         ksort($this->resourceTypes);
540 540
 
541
-        if($typeKind ==  ResourceTypeKind::ENTITY){
541
+        if ($typeKind == ResourceTypeKind::ENTITY) {
542 542
             $this->OdataEntityMap[$entityType] = $this->metadataManager->addEntityType($name);
543 543
         }
544 544
 
Please login to merge, or discard this patch.