@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | strtolower($tagNamespace) === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE) && |
| 38 | 38 | strtolower($tagName) === strtolower((ODataConstants::ATOM_PROPERTIES_ELEMENT_NAME)) |
| 39 | 39 | ) { |
| 40 | - return ; |
|
| 40 | + return; |
|
| 41 | 41 | } |
| 42 | 42 | //TODO: this will need to be expanded with opengis namespaces as well when supported |
| 43 | 43 | assert($tagNamespace === ODataConstants::ODATA_NAMESPACE || |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | strtolower($tagNamespace) === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE) && |
| 61 | 61 | strtolower($tagName) === strtolower((ODataConstants::ATOM_PROPERTIES_ELEMENT_NAME)) |
| 62 | 62 | ) { |
| 63 | - return ; |
|
| 63 | + return; |
|
| 64 | 64 | } |
| 65 | 65 | // Pops a complex object off the stack |
| 66 | 66 | $prop = $this->properties->pop(); |
@@ -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, |