Completed
Push — master ( d815fa...5c9ff6 )
by Tim
03:48 queued 01:58
created
Classes/DataSet.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * Get the TCA information of the given data sets.
59 59
      *
60 60
      * @param $implementations
61
-     * @param $table
61
+     * @param string $table
62 62
      *
63 63
      * @return array
64 64
      */
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      * Get the SQL information of the given data sets.
80 80
      *
81 81
      * @param array $implementations
82
-     * @param       $table
82
+     * @param       string $table
83 83
      *
84 84
      * @return array
85 85
      */
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      * Get the SQL Key information of the given data sets.
100 100
      *
101 101
      * @param $implementations
102
-     * @param $table
102
+     * @param string $table
103 103
      *
104 104
      * @return array
105 105
      */
Please login to merge, or discard this 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
  * Central DataSet object.
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/Loader/Aspect.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,8 +96,8 @@
 block discarded – undo
96 96
      * If the $aspectClassName not available (e.g. Extension is not installed) then
97 97
      * throw a Exception.
98 98
      *
99
-     * @param $aspectClassName
100
-     * @param $aspectJoinPoint
99
+     * @param string $aspectClassName
100
+     * @param string $aspectJoinPoint
101 101
      *
102 102
      * @throws \HDNET\Autoloader\Exception
103 103
      *
Please login to merge, or discard this 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
  * Loading Aspect.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Autoloader\Loader;
9 9
 
Please login to merge, or discard this patch.
Classes/Loader/ContentObjects.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     /**
113 113
      * Check if the class is tagged with noHeader.
114 114
      *
115
-     * @param $class
115
+     * @param string $class
116 116
      *
117 117
      * @return bool
118 118
      */
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     /**
177 177
      * Same as getClassProperties, but the fields are in LowerCaseUnderscored.
178 178
      *
179
-     * @param $className
179
+     * @param string $className
180 180
      *
181 181
      * @return array
182 182
      */
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * Loading Slots.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Autoloader\Loader;
9 9
 
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
             if (!isset($GLOBALS['TCA']['tt_content']['types'][$typeKey]['showitem'])) {
159 159
                 $baseTcaConfiguration = $this->wrapDefaultTcaConfiguration(
160 160
                     $config['fieldConfiguration'],
161
-                    (bool) $config['noHeader']
161
+                    (bool)$config['noHeader']
162 162
                 );
163 163
 
164 164
                 if (ExtensionManagementUtility::isLoaded('gridelements')) {
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
      */
357 357
     protected function getClassPropertiesInLowerCaseUnderscored($className)
358 358
     {
359
-        return \array_map(function ($value) {
359
+        return \array_map(function($value) {
360 360
             return GeneralUtility::camelCaseToLowerCaseUnderscored($value);
361 361
         }, ReflectionUtility::getDeclaringProperties($className));
362 362
     }
Please login to merge, or discard this patch.
Classes/Utility/ReflectionUtility.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      * @param string $className
96 96
      * @param string $tag
97 97
      *
98
-     * @return string|bool
98
+     * @return false|string
99 99
      */
100 100
     public static function getFirstTagValue($className, $tag)
101 101
     {
@@ -115,9 +115,9 @@  discard block
 block discarded – undo
115 115
      * Get the tag configuration from this method and respect multiple line and space configuration.
116 116
      *
117 117
      * @param MethodReflection|ClassReflection $reflectionObject
118
-     * @param array                            $tagNames
118
+     * @param string[]                            $tagNames
119 119
      *
120
-     * @return array
120
+     * @return string
121 121
      */
122 122
     public static function getTagConfiguration($reflectionObject, array $tagNames): array
123 123
     {
Please login to merge, or discard this 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 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * Get the query for the given class name oder object.
38 38
      *
39
-     * @param string|object $objectName
39
+     * @param string $objectName
40 40
      *
41 41
      * @return \TYPO3\CMS\Extbase\Persistence\QueryInterface
42 42
      */
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * Log into the TYPO3_CONF_VARS to get more information in the backend.
81 81
      *
82
-     * @param $message
82
+     * @param string $message
83 83
      */
84 84
     public static function log($message)
85 85
     {
Please login to merge, or discard this 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/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.