Completed
Push — master ( d815fa...5c9ff6 )
by Tim
03:48 queued 01:58
created
Classes/LoaderInterface.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
  * General loading interface.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Autoloader;
9 9
 
Please login to merge, or discard this patch.
Classes/Utility/TranslateUtility.php 1 patch
Spacing   +4 added lines, -4 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
  * TranslateUtility.
6 6
  */
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             }
45 45
         }
46 46
 
47
-        return (string) $default;
47
+        return (string)$default;
48 48
     }
49 49
 
50 50
     /**
@@ -119,8 +119,8 @@  discard block
 block discarded – undo
119 119
      */
120 120
     protected static function useTableNameFileBase()
121 121
     {
122
-        $configuration = \unserialize((string) $GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['autoloader']);
122
+        $configuration = \unserialize((string)$GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['autoloader']);
123 123
 
124
-        return isset($configuration['enableLanguageFileOnTableBase']) ? (bool) $configuration['enableLanguageFileOnTableBase'] : false;
124
+        return isset($configuration['enableLanguageFileOnTableBase']) ? (bool)$configuration['enableLanguageFileOnTableBase'] : false;
125 125
     }
126 126
 }
Please login to merge, or discard this patch.
Classes/Utility/ClassNamingUtility.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
  * ClassNamingUtility.php.
6 6
  */
Please login to merge, or discard this patch.
Classes/Utility/ArrayUtility.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
  * Arrays utility.
6 6
  */
Please login to merge, or discard this patch.
Classes/Utility/TcaUtility.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
  * TcaUtility.php.
6 6
  *
Please login to merge, or discard this patch.
Classes/Utility/ReflectionUtility.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
  * Reflection helper.
6 6
  */
Please login to merge, or discard this patch.
Classes/Utility/ExtendedUtility.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
  * Utility functions for the Autoloader.
6 6
  */
Please login to merge, or discard this patch.
Classes/Utility/IconUtility.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
  * Icon helper.
6 6
  */
Please login to merge, or discard this patch.
Classes/Utility/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
  * JsonServer.
6 6
  */
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         list($namespace, $method) = self::getNamespaceAndMethod($namespace, $methodRaw);
57 57
         $singleJsonRequest['method'] = $method;
58 58
 
59
-        $server = new JsonServerService($namespace, (bool) GeneralUtility::_GP('smd'));
59
+        $server = new JsonServerService($namespace, (bool)GeneralUtility::_GP('smd'));
60 60
 
61 61
         $request = new Request();
62 62
         $request->setOptions($singleJsonRequest);
Please login to merge, or discard this patch.