@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Frontend\Controller; |
4 | 4 | |
5 | 5 | /* |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Reports; |
4 | 4 | |
5 | 5 | /* |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Reports\Report\Status; |
4 | 4 | |
5 | 5 | /* |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Reports\Controller; |
4 | 4 | |
5 | 5 | /* |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Core\Mail; |
4 | 4 | |
5 | 5 | /* |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Core\Database; |
4 | 4 | |
5 | 5 | /* |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace TYPO3\CMS\Core\Database\Schema\Exception; |
5 | 5 |
@@ -1,5 +1,5 @@ discard block |
||
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 | /* |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | // Ignore new indexes that work on columns that need changes |
160 | 160 | foreach ($changedTable->addedIndexes as $indexName => $addedIndex) { |
161 | 161 | $indexColumns = array_map( |
162 | - function ($columnName) { |
|
162 | + function($columnName) { |
|
163 | 163 | // Strip MySQL prefix length information to get real column names |
164 | 164 | $columnName = preg_replace('/\(\d+\)$/', '', $columnName); |
165 | 165 | // Strip mssql '[' and ']' from column names |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | $tablesForConnection = array_keys( |
251 | 251 | array_filter( |
252 | 252 | $GLOBALS['TYPO3_CONF_VARS']['DB']['TableMapping'], |
253 | - function ($tableConnectionName) use ($connectionName) { |
|
253 | + function($tableConnectionName) use ($connectionName) { |
|
254 | 254 | return $tableConnectionName === $connectionName; |
255 | 255 | } |
256 | 256 | ) |
@@ -1063,7 +1063,7 @@ discard block |
||
1063 | 1063 | { |
1064 | 1064 | return array_filter( |
1065 | 1065 | $tableDiffs, |
1066 | - function ($table) use ($validTableNames) { |
|
1066 | + function($table) use ($validTableNames) { |
|
1067 | 1067 | if ($table instanceof Table) { |
1068 | 1068 | $tableName = $table->getName(); |
1069 | 1069 | } else { |
@@ -1105,7 +1105,7 @@ discard block |
||
1105 | 1105 | |
1106 | 1106 | // Remove the length information from column names for indexes if required. |
1107 | 1107 | $cleanedColumnNames = array_map( |
1108 | - function (string $columnName) use ($connection) { |
|
1108 | + function(string $columnName) use ($connection) { |
|
1109 | 1109 | if ($connection->getDatabasePlatform() instanceof MySqlPlatform) { |
1110 | 1110 | // Returning the unquoted, unmodified version of the column name since |
1111 | 1111 | // it can include the length information for BLOB/TEXT columns which |
@@ -1,5 +1,5 @@ |
||
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 |