@@ -119,7 +119,7 @@ |
||
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 |
@@ -78,7 +78,6 @@ |
||
78 | 78 | $this->eTag = $eTag; |
79 | 79 | $this->name = $name; |
80 | 80 | $this->srcLink = $srcLink; |
81 | - $this->rel = (null !== $rel) ? $rel : |
|
82 | - ODataConstants::ATOM_MEDIA_RESOURCE_RELATION_ATTRIBUTE_VALUE . $name; |
|
81 | + $this->rel = (null !== $rel) ? $rel : ODataConstants::ATOM_MEDIA_RESOURCE_RELATION_ATTRIBUTE_VALUE . $name; |
|
83 | 82 | } |
84 | 83 | } |
@@ -615,7 +615,7 @@ |
||
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) { |
@@ -877,10 +877,10 @@ |
||
877 | 877 | { |
878 | 878 | $queryParameterString = null; |
879 | 879 | foreach ([ODataConstants::HTTPQUERY_STRING_FILTER, |
880 | - ODataConstants::HTTPQUERY_STRING_EXPAND, |
|
881 | - ODataConstants::HTTPQUERY_STRING_ORDERBY, |
|
882 | - ODataConstants::HTTPQUERY_STRING_INLINECOUNT, |
|
883 | - ODataConstants::HTTPQUERY_STRING_SELECT,] as $queryOption) { |
|
880 | + ODataConstants::HTTPQUERY_STRING_EXPAND, |
|
881 | + ODataConstants::HTTPQUERY_STRING_ORDERBY, |
|
882 | + ODataConstants::HTTPQUERY_STRING_INLINECOUNT, |
|
883 | + ODataConstants::HTTPQUERY_STRING_SELECT,] as $queryOption) { |
|
884 | 884 | $value = $this->getService()->getHost()->getQueryStringItem($queryOption); |
885 | 885 | if (null !== $value) { |
886 | 886 | if (null !== $queryParameterString) { |
@@ -146,19 +146,18 @@ discard block |
||
146 | 146 | $selfLink->url = $relativeUri; |
147 | 147 | |
148 | 148 | |
149 | - $entries = array_map(function($entry){ |
|
149 | + $entries = array_map(function ($entry) { |
|
150 | 150 | return $this->writeTopLevelElement( |
151 | 151 | $entry instanceof QueryResult ? $entry : new QueryResult($entry) |
152 | 152 | ); |
153 | 153 | }, $res); |
154 | 154 | |
155 | - $odata = new ODataFeed( |
|
155 | + $odata = new ODataFeed( |
|
156 | 156 | $absoluteUri, |
157 | 157 | new ODataTitle($title), |
158 | 158 | $selfLink, |
159 | 159 | $this->getRequest()->queryType == QueryType::ENTITIES_WITH_COUNT() ? |
160 | - $this->getRequest()->getCountValue() : |
|
161 | - null, |
|
160 | + $this->getRequest()->getCountValue() : null, |
|
162 | 161 | null, |
163 | 162 | $entries, |
164 | 163 | $this->getUpdated()->format(DATE_ATOM), |
@@ -171,7 +170,7 @@ discard block |
||
171 | 170 | $pageSize = $this->getService()->getConfiguration()->getEntitySetPageSize($resourceSet); |
172 | 171 | $requestTop = $this->getRequest()->getTopOptionCount() ?? $pageSize + 1; |
173 | 172 | if (true === $entryObjects->hasMore && $requestTop > $pageSize) { |
174 | - $odata->nextPageLink = new ODataLink( |
|
173 | + $odata->nextPageLink = new ODataLink( |
|
175 | 174 | ODataConstants::ATOM_LINK_NEXT_ATTRIBUTE_STRING, |
176 | 175 | null, |
177 | 176 | null, |
@@ -741,7 +740,7 @@ discard block |
||
741 | 740 | return false; |
742 | 741 | } |
743 | 742 | |
744 | - return 0 == ($value % 4); |
|
743 | + return 0 == ($value%4); |
|
745 | 744 | } |
746 | 745 | |
747 | 746 | /** |
@@ -872,7 +871,7 @@ discard block |
||
872 | 871 | ODataConstants::HTTPQUERY_STRING_EXPAND, |
873 | 872 | ODataConstants::HTTPQUERY_STRING_ORDERBY, |
874 | 873 | ODataConstants::HTTPQUERY_STRING_INLINECOUNT, |
875 | - ODataConstants::HTTPQUERY_STRING_SELECT,] as $queryOption) { |
|
874 | + ODataConstants::HTTPQUERY_STRING_SELECT, ] as $queryOption) { |
|
876 | 875 | $value = $this->getService()->getHost()->getQueryStringItem($queryOption); |
877 | 876 | if (null !== $value) { |
878 | 877 | if (null !== $queryParameterString) { |
@@ -146,7 +146,7 @@ |
||
146 | 146 | $selfLink->url = $relativeUri; |
147 | 147 | |
148 | 148 | |
149 | - $entries = array_map(function($entry){ |
|
149 | + $entries = array_map(function($entry) { |
|
150 | 150 | return $this->writeTopLevelElement( |
151 | 151 | $entry instanceof QueryResult ? $entry : new QueryResult($entry) |
152 | 152 | ); |
@@ -598,7 +598,7 @@ discard block |
||
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 |
||
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 | ); |
@@ -102,12 +102,12 @@ |
||
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) { |
@@ -97,7 +97,7 @@ |
||
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 |
@@ -148,7 +148,7 @@ |
||
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); |
@@ -134,9 +134,9 @@ discard block |
||
134 | 134 | if ($flag1 && $flag2) { |
135 | 135 | return 0; |
136 | 136 | } elseif ($flag1) { |
137 | - return $ascend * -1; |
|
137 | + return $ascend*-1; |
|
138 | 138 | } elseif ($flag2) { |
139 | - return $ascend * 1; |
|
139 | + return $ascend*1; |
|
140 | 140 | } |
141 | 141 | $type = $this->resourceProperty->getInstanceType(); |
142 | 142 | if ($type instanceof DateTime) { |
@@ -147,10 +147,10 @@ discard block |
||
147 | 147 | $result = strcmp($accessor1, $accessor2); |
148 | 148 | } else { |
149 | 149 | $delta = $accessor1 - $accessor2; |
150 | - $result = (0 == $delta) ? 0 : $delta / abs($delta); |
|
150 | + $result = (0 == $delta) ? 0 : $delta/abs($delta); |
|
151 | 151 | } |
152 | 152 | |
153 | - return $ascend * $result; |
|
153 | + return $ascend*$result; |
|
154 | 154 | }; |
155 | 155 | |
156 | 156 | return $retVal; |