@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | /** |
| 5 | 5 | * Soap server handling. |
| 6 | 6 | */ |
@@ -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); |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | /** |
| 5 | 5 | * SmartObjectInformationService.php. |
| 6 | 6 | */ |
@@ -203,9 +203,9 @@ discard block |
||
| 203 | 203 | */ |
| 204 | 204 | protected function useTableNameFileBase() |
| 205 | 205 | { |
| 206 | - $configuration = \unserialize((string) $GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['autoloader']); |
|
| 206 | + $configuration = \unserialize((string)$GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['autoloader']); |
|
| 207 | 207 | |
| 208 | - return isset($configuration['enableLanguageFileOnTableBase']) ? (bool) $configuration['enableLanguageFileOnTableBase'] : false; |
|
| 208 | + return isset($configuration['enableLanguageFileOnTableBase']) ? (bool)$configuration['enableLanguageFileOnTableBase'] : false; |
|
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | /** |
@@ -276,7 +276,7 @@ discard block |
||
| 276 | 276 | 'name' => GeneralUtility::camelCaseToLowerCaseUnderscored($property->getName()), |
| 277 | 277 | 'db' => \trim($dbInformation[0]), |
| 278 | 278 | 'var' => \trim($var), |
| 279 | - 'rte' => (bool) $property->isTaggedWith('enableRichText'), |
|
| 279 | + 'rte' => (bool)$property->isTaggedWith('enableRichText'), |
|
| 280 | 280 | ]; |
| 281 | 281 | } |
| 282 | 282 | |
@@ -339,7 +339,7 @@ discard block |
||
| 339 | 339 | $classReflection = ReflectionUtility::createReflectionClass($modelClassName); |
| 340 | 340 | if ($classReflection->isTaggedWith('key')) { |
| 341 | 341 | $additionalKeys = $classReflection->getTagValues('key'); |
| 342 | - \array_walk($additionalKeys, function (&$item) { |
|
| 342 | + \array_walk($additionalKeys, function(&$item) { |
|
| 343 | 343 | $item = 'KEY ' . $item; |
| 344 | 344 | }); |
| 345 | 345 | $fields = \array_merge($fields, $additionalKeys); |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | /** |
| 5 | 5 | * Json server handling. |
| 6 | 6 | */ |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | $this->serverClass = $GLOBALS['TYPO3_CONF_VARS']['AUTOLOADER']['Json'][$server]; |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - $this->renderSmd = (bool) $smd; |
|
| 56 | + $this->renderSmd = (bool)$smd; |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | /** |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | /** |
| 4 | 4 | * Content Controller. |
| 5 | 5 | */ |
| 6 | -declare(strict_types=1); |
|
| 6 | +declare(strict_types = 1); |
|
| 7 | 7 | |
| 8 | 8 | namespace HDNET\Autoloader\Controller; |
| 9 | 9 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | /** |
| 5 | 5 | * Map DateTime. |
| 6 | 6 | */ |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | /** |
| 5 | 5 | * Map general ObjectStorage. |
| 6 | 6 | */ |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | /** |
| 5 | 5 | * Map general Models. |
| 6 | 6 | */ |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | /** |
| 5 | 5 | * Map Array. |
| 6 | 6 | */ |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | /** |
| 5 | 5 | * Map int. |
| 6 | 6 | */ |