Passed
Pull Request — master (#245)
by Christopher
04:04
created
src/POData/Providers/Metadata/Type/Binary.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
     public static function validateWithoutPrefix($value, &$outValue)
120 120
     {
121 121
         $length = strlen($value);
122
-        if (0 == $length || 0 != $length % 2) {
122
+        if (0 == $length || 0 != $length%2) {
123 123
             return false;
124 124
         }
125 125
 
Please login to merge, or discard this patch.
src/POData/BatchProcessor/ChangeSetParser.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -143,8 +143,7 @@  discard block
 block discarded – undo
143 143
         $response .= false === $this->changeSetBoundary ? "\r\n" : "--\r\n";
144 144
         $response = 'Content-Length: ' . strlen($response) . "\r\n\r\n" . $response;
145 145
         $response = false === $this->changeSetBoundary ?
146
-            $response :
147
-            'Content-Type: multipart/mixed; boundary=' . $this->changeSetBoundary . "\r\n" . $response;
146
+            $response : 'Content-Type: multipart/mixed; boundary=' . $this->changeSetBoundary . "\r\n" . $response;
148 147
         return $response;
149 148
     }
150 149
 
@@ -228,7 +227,7 @@  discard block
 block discarded – undo
228 227
             if ($contentIDinit == $contentID) {
229 228
                 $contentIDinit--;
230 229
             }
231
-            $this->rawRequests[$contentID] = (object)[
230
+            $this->rawRequests[$contentID] = (object) [
232 231
                 'RequestVerb' => $requestPathParts[0],
233 232
                 'RequestURL' => $requestPathParts[1],
234 233
                 'ServerParams' => $serverParts,
Please login to merge, or discard this patch.
src/POData/OperationContext/ServiceHost.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -615,7 +615,7 @@
 block discarded – undo
615 615
      */
616 616
     public function setResponseStatusCode(int $value): void
617 617
     {
618
-        $floor = floor($value / 100);
618
+        $floor = floor($value/100);
619 619
         if ($floor >= 1 && $floor <= 5) {
620 620
             $statusDescription = HttpStatus::getStatusDescription($value);
621 621
             if (null !== $statusDescription) {
Please login to merge, or discard this patch.
src/POData/BaseService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -598,7 +598,7 @@  discard block
 block discarded – undo
598 598
             MimeTypes::MIME_APPLICATION_JSON_FULL_META,
599 599
             MimeTypes::MIME_APPLICATION_JSON_NO_META,
600 600
             MimeTypes::MIME_APPLICATION_JSON_MINIMAL_META,
601
-            MimeTypes::MIME_APPLICATION_JSON_VERBOSE,];
601
+            MimeTypes::MIME_APPLICATION_JSON_VERBOSE, ];
602 602
 
603 603
         // The Accept request-header field specifies media types which are acceptable for the response
604 604
 
@@ -673,7 +673,7 @@  discard block
 block discarded – undo
673 673
                     $requestAcceptText,
674 674
                     array_merge(
675 675
                         [MimeTypes::MIME_APPLICATION_XML,
676
-                            MimeTypes::MIME_TEXTXML,],
676
+                            MimeTypes::MIME_TEXTXML, ],
677 677
                         $baseMimeTypes
678 678
                     )
679 679
                 );
Please login to merge, or discard this patch.
src/POData/Providers/Metadata/Type/Guid.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,12 +102,12 @@
 block discarded – undo
102 102
             $patt = ['/^(\'[0-9a-fA-F]{32}\')?$/',
103 103
                 '/^(\'[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\')?$/',
104 104
                 '/^\'\{?([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\}?\')?$/',
105
-                '/^\'\(?([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\)?\')?$/',];
105
+                '/^\'\(?([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\)?\')?$/', ];
106 106
         } else {
107 107
             $patt = ['/^([0-9a-fA-F]{32})?$/',
108 108
                 '/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})?$/',
109 109
                 '/^\{?([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\}?)?$/',
110
-                '/^\(?([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\)?)?$/',];
110
+                '/^\(?([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\)?)?$/', ];
111 111
         }
112 112
 
113 113
         foreach ($patt as $pattern) {
Please login to merge, or discard this patch.
src/POData/Readers/Atom/Processors/FeedProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
     public function handleStartMetadataCount()
98 98
     {
99 99
         $this->enqueueEnd(function () {
100
-            $this->oDataFeed->rowCount = (int)$this->popCharData();
100
+            $this->oDataFeed->rowCount = (int) $this->popCharData();
101 101
         });
102 102
     }
103 103
 
Please login to merge, or discard this patch.
src/POData/ObjectModel/CynicDeserialiser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
         assert($set instanceof ResourceSet, get_class($set));
149 149
         $type       = $set->getResourceType();
150 150
         $properties = $this->getDeserialiser()->bulkDeserialise($type, $content);
151
-        $properties = (object)$properties;
151
+        $properties = (object) $properties;
152 152
 
153 153
         if ($isCreate) {
154 154
             $result = $this->getWrapper()->createResourceforResourceSet($set, null, $properties);
Please login to merge, or discard this patch.
src/POData/ObjectModel/CynicSerialiser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
             return false;
749 749
         }
750 750
 
751
-        return 0 == ($value % 4);
751
+        return 0 == ($value%4);
752 752
     }
753 753
 
754 754
     /**
@@ -879,7 +879,7 @@  discard block
 block discarded – undo
879 879
             ODataConstants::HTTPQUERY_STRING_EXPAND,
880 880
             ODataConstants::HTTPQUERY_STRING_ORDERBY,
881 881
             ODataConstants::HTTPQUERY_STRING_INLINECOUNT,
882
-            ODataConstants::HTTPQUERY_STRING_SELECT,] as $queryOption) {
882
+            ODataConstants::HTTPQUERY_STRING_SELECT, ] as $queryOption) {
883 883
             $value = $this->getService()->getHost()->getQueryStringItem($queryOption);
884 884
             if (null !== $value) {
885 885
                 if (null !== $queryParameterString) {
Please login to merge, or discard this patch.
src/POData/Writers/Json/JsonWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@
 block discarded – undo
205 205
 
206 206
             case 'Edm.DateTime':
207 207
                 $dateTime          = new Carbon($value, new DateTimeZone('UTC'));
208
-                $formattedDateTime = $dateTime->format('U') * 1000;
208
+                $formattedDateTime = $dateTime->format('U')*1000;
209 209
                 $this->writeCore('/Date(' . $formattedDateTime . ')/', /* quotes */ true);
210 210
                 break;
211 211
 
Please login to merge, or discard this patch.