Completed
Branch master (d17104)
by Christian
21:20
created
sysext/core/Classes/Database/Schema/Parser/AST/DataType/IntegerDataType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace TYPO3\CMS\Core\Database\Schema\Parser\AST\DataType;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Database/Schema/Parser/TableBuilder.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace TYPO3\CMS\Core\Database\Schema\Parser;
5 5
 
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
         $indexName = $item->indexName->getQuotedName();
198 198
 
199 199
         $columnNames = array_map(
200
-            function (IndexColumnName $columnName) {
200
+            function(IndexColumnName $columnName) {
201 201
                 if ($columnName->length) {
202 202
                     return $columnName->columnName->getQuotedName() . '(' . $columnName->length . ')';
203 203
                 }
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
     {
248 248
         $indexName = $item->indexName->getQuotedName() ?: null;
249 249
         $localColumnNames = array_map(
250
-            function (IndexColumnName $columnName) {
250
+            function(IndexColumnName $columnName) {
251 251
                 return $columnName->columnName->getQuotedName();
252 252
             },
253 253
             $item->columnNames
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
     ) {
270 270
         $foreignTableName = $referenceDefinition->tableName->getQuotedName();
271 271
         $foreignColumNames = array_map(
272
-            function (IndexColumnName $columnName) {
272
+            function(IndexColumnName $columnName) {
273 273
                 return $columnName->columnName->getQuotedName();
274 274
             },
275 275
             $referenceDefinition->columnNames
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Database/Schema/TableDiff.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Core\Database\Schema;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
Classes/Database/Schema/EventListener/SchemaColumnDefinitionListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace TYPO3\CMS\Core\Database\Schema\EventListener;
5 5
 
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
         $values = explode($quoteChar . ',' . $quoteChar, substr($valuesDefinition, 1, -1));
119 119
 
120 120
         return array_map(
121
-            function (string $value) use ($quoteChar) {
121
+            function(string $value) use ($quoteChar) {
122 122
                 return str_replace($quoteChar . $quoteChar, $quoteChar, $value);
123 123
             },
124 124
             $values
Please login to merge, or discard this patch.
core/Classes/Database/Schema/EventListener/SchemaAlterTableListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace TYPO3\CMS\Core\Database\Schema\EventListener;
5 5
 
Please login to merge, or discard this patch.
Classes/Database/Schema/EventListener/SchemaIndexDefinitionListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace TYPO3\CMS\Core\Database\Schema\EventListener;
5 5
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
         $subPartColumns = array_filter(
54 54
             $tableIndexes,
55
-            function ($column) {
55
+            function($column) {
56 56
                 return $column['Sub_Part'];
57 57
             }
58 58
         );
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Database/Schema/Types/EnumType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Core\Database\Schema\Types;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Database/Platform/PlatformInformation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace TYPO3\CMS\Core\Database\Platform;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Database/Query/QueryBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Core\Database\Query;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.