Completed
Push — master ( d815fa...5c9ff6 )
by Tim
03:48 queued 01:58
created
Classes/Service/SoapServer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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&amp;server=' . $this->serverKey;
127 127
 
128 128
         return HttpUtility::buildUrl($parts);
Please login to merge, or discard this patch.
Classes/Service/SmartObjectInformationService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
Classes/Service/JsonServer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
Classes/Controller/ContentController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Classes/Mapper/DateTimeMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 /**
5 5
  * Map DateTime.
6 6
  */
Please login to merge, or discard this patch.
Classes/Mapper/ObjectStorageMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 /**
5 5
  * Map general ObjectStorage.
6 6
  */
Please login to merge, or discard this patch.
Classes/Mapper/ModelMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 /**
5 5
  * Map general Models.
6 6
  */
Please login to merge, or discard this patch.
Classes/Mapper/ArrayMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 /**
5 5
  * Map Array.
6 6
  */
Please login to merge, or discard this patch.
Classes/Mapper/IntMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 /**
5 5
  * Map int.
6 6
  */
Please login to merge, or discard this patch.