@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | if (isset($GLOBALS['TYPO3_CONF_VARS']['AUTOLOADER']['Soap'][$server])) { |
51 | 51 | $this->serverClass = $GLOBALS['TYPO3_CONF_VARS']['AUTOLOADER']['Soap'][$server]; |
52 | 52 | } |
53 | - $this->renderWsdl = (bool) $wsdl; |
|
53 | + $this->renderWsdl = (bool)$wsdl; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | protected function getServiceUri() |
123 | 123 | { |
124 | 124 | $uri = GeneralUtility::getIndpEnv('TYPO3_REQUEST_URL'); |
125 | - $parts = (array) \parse_url($uri); |
|
125 | + $parts = (array)\parse_url($uri); |
|
126 | 126 | $parts['query'] = 'eID=SoapServer&server=' . $this->serverKey; |
127 | 127 | |
128 | 128 | return HttpUtility::buildUrl($parts); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | return ''; |
87 | 87 | } |
88 | 88 | |
89 | - return (string) $uri; |
|
89 | + return (string)$uri; |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -96,9 +96,9 @@ discard block |
||
96 | 96 | */ |
97 | 97 | protected function isAlwaysActivated(): bool |
98 | 98 | { |
99 | - $configuration = \unserialize((string) $GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['autoloader']); |
|
99 | + $configuration = \unserialize((string)$GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['autoloader']); |
|
100 | 100 | |
101 | - return isset($configuration['enableAutoloaderClearCacheInProduction']) ? (bool) $configuration['enableAutoloaderClearCacheInProduction'] : false; |
|
101 | + return isset($configuration['enableAutoloaderClearCacheInProduction']) ? (bool)$configuration['enableAutoloaderClearCacheInProduction'] : false; |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -110,6 +110,6 @@ |
||
110 | 110 | { |
111 | 111 | $ctype = $row['CType']; |
112 | 112 | |
113 | - return (bool) $GLOBALS['TYPO3_CONF_VARS']['AUTOLOADER']['ContentObject'][$ctype]; |
|
113 | + return (bool)$GLOBALS['TYPO3_CONF_VARS']['AUTOLOADER']['ContentObject'][$ctype]; |
|
114 | 114 | } |
115 | 115 | } |
@@ -45,8 +45,8 @@ |
||
45 | 45 | */ |
46 | 46 | protected function useTableNameFileBase() |
47 | 47 | { |
48 | - $configuration = \unserialize((string) $GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['autoloader']); |
|
48 | + $configuration = \unserialize((string)$GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['autoloader']); |
|
49 | 49 | |
50 | - return isset($configuration['enableLanguageFileOnTableBase']) ? (bool) $configuration['enableLanguageFileOnTableBase'] : false; |
|
50 | + return isset($configuration['enableLanguageFileOnTableBase']) ? (bool)$configuration['enableLanguageFileOnTableBase'] : false; |
|
51 | 51 | } |
52 | 52 | } |