| @@ -253,9 +253,9 @@ | ||
| 253 | 253 | $keyPredicate[strlen($keyPredicate) - 2] = ' '; | 
| 254 | 254 |          } else { | 
| 255 | 255 |              $idBits       = explode('/', $id); | 
| 256 | - $keyRaw = $idBits[count($idBits)-1]; | |
| 256 | + $keyRaw = $idBits[count($idBits) - 1]; | |
| 257 | 257 |              $rawBits      = explode('(', $keyRaw, 2); | 
| 258 | -            $rawBits      = explode(')', $rawBits[count($rawBits)-1]); | |
| 258 | +            $rawBits      = explode(')', $rawBits[count($rawBits) - 1]); | |
| 259 | 259 | $keyPredicate = $rawBits[0]; | 
| 260 | 260 | } | 
| 261 | 261 | $keyPredicate = trim($keyPredicate); | 
| @@ -42,7 +42,7 @@ | ||
| 42 | 42 | |
| 43 | 43 | $payloadType = $payload->type->term; | 
| 44 | 44 |          $pay         = explode('.', $payloadType); | 
| 45 | - $payloadType = $pay[count($pay)-1]; | |
| 45 | + $payloadType = $pay[count($pay) - 1]; | |
| 46 | 46 | $actualType = $entityType->getName(); | 
| 47 | 47 | |
| 48 | 48 |          if ($payloadType !== $actualType) { | 
| @@ -180,7 +180,7 @@ | ||
| 180 | 180 |          if (null !== $type) { | 
| 181 | 181 | $rawTerm = $type->term; | 
| 182 | 182 |              $termArray             = explode('.', $rawTerm); | 
| 183 | - $final = $termArray[count($termArray)-1]; | |
| 183 | + $final = $termArray[count($termArray) - 1]; | |
| 184 | 184 | $this->resourceSetName = MetadataManager::getResourceSetNameFromResourceType($final); | 
| 185 | 185 | } | 
| 186 | 186 | } | 
| @@ -73,7 +73,7 @@ | ||
| 73 | 73 | public function getResponse() | 
| 74 | 74 |      { | 
| 75 | 75 | $response = ''; | 
| 76 | - $splitter = '--' . $this->batchBoundary . "\r\n"; | |
| 76 | + $splitter = '--' . $this->batchBoundary . "\r\n"; | |
| 77 | 77 | $raw = $this->changeSetProcessors; | 
| 78 | 78 |          foreach ($raw as $contentID => &$workingObject) { | 
| 79 | 79 | $response .= $splitter; | 
| @@ -19,7 +19,7 @@ discard block | ||
| 19 | 19 | protected $changeSetBoundary; | 
| 20 | 20 | protected $rawRequests = []; | 
| 21 | 21 | protected $service; | 
| 22 | - protected $contentIDToLocationLookup =[]; | |
| 22 | + protected $contentIDToLocationLookup = []; | |
| 23 | 23 | |
| 24 | 24 | /** | 
| 25 | 25 | * ChangeSetParser constructor. | 
| @@ -108,8 +108,7 @@ discard block | ||
| 108 | 108 | $response .= false === $this->changeSetBoundary ? "\r\n" : "--\r\n"; | 
| 109 | 109 | $response = 'Content-Length: ' . strlen($response) . "\r\n\r\n" . $response; | 
| 110 | 110 | $response = false === $this->changeSetBoundary ? | 
| 111 | - $response : | |
| 112 | - 'Content-Type: multipart/mixed; boundary=' . $this->changeSetBoundary . "\r\n" . $response; | |
| 111 | + $response : 'Content-Type: multipart/mixed; boundary=' . $this->changeSetBoundary . "\r\n" . $response; | |
| 113 | 112 | return $response; | 
| 114 | 113 | } | 
| 115 | 114 | |
| @@ -193,7 +192,7 @@ discard block | ||
| 193 | 192 |              if ($contentIDinit == $contentID) { | 
| 194 | 193 | $contentIDinit--; | 
| 195 | 194 | } | 
| 196 | - $this->rawRequests[$contentID] = (object)[ | |
| 195 | + $this->rawRequests[$contentID] = (object) [ | |
| 197 | 196 | 'RequestVerb' => $requestPathParts[0], | 
| 198 | 197 | 'RequestURL' => $requestPathParts[1], | 
| 199 | 198 | 'ServerParams' => $serverParts, | 
| @@ -693,7 +693,7 @@ | ||
| 693 | 693 | ResourceEntityType $concreteType = null | 
| 694 | 694 |      ) { | 
| 695 | 695 | $allowedMult = ['*', '1', '0..1']; | 
| 696 | - $backMultArray = [ '*' => '*', '1' => '0..1', '0..1' => '1']; | |
| 696 | + $backMultArray = ['*' => '*', '1' => '0..1', '0..1' => '1']; | |
| 697 | 697 | $this->checkInstanceProperty($name, $sourceResourceType); | 
| 698 | 698 | |
| 699 | 699 | // check that property and resource name don't up and collide - would violate OData spec | 
| @@ -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 | } | 
| @@ -43,14 +43,14 @@ | ||
| 43 | 43 | public function handleStartNode($tagNamespace, $tagName, $attributes) | 
| 44 | 44 |      { | 
| 45 | 45 | //The only sub notes that will exist will be the inline ones before we process the feed or entity. | 
| 46 | - assert($tagNamespace === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE)); | |
| 46 | + assert($tagNamespace === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE)); | |
| 47 | 47 | assert($tagName === strtolower(ODataConstants::ATOM_INLINE_ELEMENT_NAME)); | 
| 48 | 48 | } | 
| 49 | 49 | |
| 50 | 50 | public function handleEndNode($tagNamespace, $tagName) | 
| 51 | 51 |      { | 
| 52 | 52 | //The only sub notes that will exist will be the inline ones before we process the feed or entity. | 
| 53 | - assert($tagNamespace === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE)); | |
| 53 | + assert($tagNamespace === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE)); | |
| 54 | 54 | assert($tagName === strtolower(ODataConstants::ATOM_INLINE_ELEMENT_NAME)); | 
| 55 | 55 | } | 
| 56 | 56 | |
| @@ -24,7 +24,7 @@ | ||
| 24 | 24 | */ | 
| 25 | 25 | public static function handleException(\Exception $exception, IService $service) | 
| 26 | 26 |      { | 
| 27 | - $acceptTypesText = $service->getHost()->getRequestAccept() ?? ''; | |
| 27 | + $acceptTypesText = $service->getHost()->getRequestAccept() ?? ''; | |
| 28 | 28 |          try { | 
| 29 | 29 | $responseContentType = HttpProcessUtility::selectMimeType( | 
| 30 | 30 | $acceptTypesText, |