@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | ); |
224 | 224 | } |
225 | 225 | |
226 | - $serviceUri = $requestUriScheme .'://' . $this->getAbsoluteRequestUri()->getHost(); |
|
226 | + $serviceUri = $requestUriScheme . '://' . $this->getAbsoluteRequestUri()->getHost(); |
|
227 | 227 | |
228 | 228 | if (($requestUriScheme == 'http' && $requestUriPort != '80') || |
229 | 229 | ($requestUriScheme == 'https' && $requestUriPort != '443') |
@@ -513,7 +513,7 @@ discard block |
||
513 | 513 | $this->getOperationContext()->outgoingResponse()->setContentLength($value); |
514 | 514 | } else { |
515 | 515 | throw ODataException::notAcceptableError( |
516 | - 'ContentLength: '.$value.' is invalid' |
|
516 | + 'ContentLength: ' . $value . ' is invalid' |
|
517 | 517 | ); |
518 | 518 | } |
519 | 519 | } |
@@ -556,7 +556,7 @@ discard block |
||
556 | 556 | public function setResponseStatusCode($value) |
557 | 557 | { |
558 | 558 | if (!is_numeric($value)) { |
559 | - $msg = 'Invalid, non-numeric, status code: '.$value; |
|
559 | + $msg = 'Invalid, non-numeric, status code: ' . $value; |
|
560 | 560 | throw ODataException::createInternalServerError($msg); |
561 | 561 | } |
562 | 562 | $floor = floor($value/100); |