@@ -61,7 +61,7 @@ |
||
| 61 | 61 | ) { |
| 62 | 62 | $this->configuration = $configuration; |
| 63 | 63 | $this->view = $view; |
| 64 | - $this->options = array_merge(['text' => ''], $options); |
|
| 64 | + $this->options = array_merge(['text' => ''], $options); |
|
| 65 | 65 | $this->buttonProvider = $buttonProvider; |
| 66 | 66 | } |
| 67 | 67 | |
@@ -45,20 +45,20 @@ |
||
| 45 | 45 | public function getFactories(): array |
| 46 | 46 | { |
| 47 | 47 | return [ |
| 48 | - 'dashboard.presets' => [ static::class, 'getDashboardPresets' ], |
|
| 49 | - 'dashboard.widgetGroups' => [ static::class, 'getWidgetGroups' ], |
|
| 50 | - 'dashboard.widgets' => [ static::class, 'getWidgets' ], |
|
| 48 | + 'dashboard.presets' => [static::class, 'getDashboardPresets'], |
|
| 49 | + 'dashboard.widgetGroups' => [static::class, 'getWidgetGroups'], |
|
| 50 | + 'dashboard.widgets' => [static::class, 'getWidgets'], |
|
| 51 | 51 | ]; |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | public function getExtensions(): array |
| 55 | 55 | { |
| 56 | 56 | return [ |
| 57 | - DashboardPresetRegistry::class => [ static::class, 'configureDashboardPresetRegistry' ], |
|
| 58 | - WidgetGroupRegistry::class => [ static::class, 'configureWidgetGroupRegistry' ], |
|
| 59 | - 'dashboard.presets' => [ static::class, 'configureDashboardPresets' ], |
|
| 60 | - 'dashboard.widgetGroups' => [ static::class, 'configureWidgetGroups' ], |
|
| 61 | - 'dashboard.widgets' => [ static::class, 'configureWidgets' ] |
|
| 57 | + DashboardPresetRegistry::class => [static::class, 'configureDashboardPresetRegistry'], |
|
| 58 | + WidgetGroupRegistry::class => [static::class, 'configureWidgetGroupRegistry'], |
|
| 59 | + 'dashboard.presets' => [static::class, 'configureDashboardPresets'], |
|
| 60 | + 'dashboard.widgetGroups' => [static::class, 'configureWidgetGroups'], |
|
| 61 | + 'dashboard.widgets' => [static::class, 'configureWidgets'] |
|
| 62 | 62 | ] + parent::getExtensions(); |
| 63 | 63 | } |
| 64 | 64 | |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | |
| 73 | 73 | try { |
| 74 | 74 | $file = GeneralUtility::makeInstance(ResourceFactory::class)->getFileObject($fileUid); |
| 75 | - } catch (FileDoesNotExistException|\InvalidArgumentException $e) { |
|
| 75 | + } catch (FileDoesNotExistException | \InvalidArgumentException $e) { |
|
| 76 | 76 | continue; |
| 77 | 77 | } |
| 78 | 78 | |
@@ -99,8 +99,8 @@ discard block |
||
| 99 | 99 | if ($processedImages !== []) { |
| 100 | 100 | $iconIdentifier = $this->data['systemLanguageRows'][(int)$sysLanguageUid]['flagIconIdentifier'] ?? 'flags-multiple'; |
| 101 | 101 | $html[] = '<div class="t3-form-original-language">'; |
| 102 | - $html[] = $iconFactory->getIcon($iconIdentifier, Icon::SIZE_SMALL)->render(); |
|
| 103 | - $html[] = implode(LF, $processedImages); |
|
| 102 | + $html[] = $iconFactory->getIcon($iconIdentifier, Icon::SIZE_SMALL)->render(); |
|
| 103 | + $html[] = implode(LF, $processedImages); |
|
| 104 | 104 | $html[] = '</div>'; |
| 105 | 105 | } |
| 106 | 106 | } |
@@ -518,7 +518,7 @@ |
||
| 518 | 518 | while (!feof($fh)) { |
| 519 | 519 | $line = (string)fgets($fh, 4096); |
| 520 | 520 | // Has a lot of info |
| 521 | - [$char, $name, $cat, , , $decomp, , , $num] = explode(';', rtrim($line)); |
|
| 521 | + [$char, $name, $cat,,, $decomp,,, $num] = explode(';', rtrim($line)); |
|
| 522 | 522 | $ord = hexdec($char); |
| 523 | 523 | if ($ord > 65535) { |
| 524 | 524 | // Only process the BMP |
@@ -2146,7 +2146,7 @@ |
||
| 2146 | 2146 | $tempCommaReplacementString = '###KASPER###'; |
| 2147 | 2147 | |
| 2148 | 2148 | // replace every "," wrapped in "()" by a "unique" string |
| 2149 | - $string = preg_replace_callback('/\((?>[^()]|(?R))*\)/', function ($result) use ($tempCommaReplacementString) { |
|
| 2149 | + $string = preg_replace_callback('/\((?>[^()]|(?R))*\)/', function($result) use ($tempCommaReplacementString) { |
|
| 2150 | 2150 | return str_replace(',', $tempCommaReplacementString, $result[0]); |
| 2151 | 2151 | }, $string) ?? ''; |
| 2152 | 2152 | |
@@ -243,8 +243,8 @@ |
||
| 243 | 243 | |
| 244 | 244 | $standaloneView->assign('form', $formRuntime); |
| 245 | 245 | $standaloneView->getRenderingContext() |
| 246 | - ->getViewHelperVariableContainer() |
|
| 247 | - ->addOrUpdate(RenderRenderableViewHelper::class, 'formRuntime', $formRuntime); |
|
| 246 | + ->getViewHelperVariableContainer() |
|
| 247 | + ->addOrUpdate(RenderRenderableViewHelper::class, 'formRuntime', $formRuntime); |
|
| 248 | 248 | |
| 249 | 249 | return $standaloneView; |
| 250 | 250 | } |
@@ -158,7 +158,7 @@ |
||
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | // Remove empty values, but keep "0" as value (that's why "strlen" is used as second parameter) |
| 161 | - $redirectUrlList = array_filter($redirectUrlList, static function (string $value): bool { |
|
| 161 | + $redirectUrlList = array_filter($redirectUrlList, static function(string $value): bool { |
|
| 162 | 162 | return strlen($value) > 0; |
| 163 | 163 | }); |
| 164 | 164 | |
@@ -103,7 +103,7 @@ |
||
| 103 | 103 | for ($daysBefore = $this->days; $daysBefore >= 0; $daysBefore--) { |
| 104 | 104 | $this->labels[] = date($format, (int)strtotime('-' . $daysBefore . ' day')); |
| 105 | 105 | $startPeriod = (int)strtotime('-' . $daysBefore . ' day 0:00:00'); |
| 106 | - $endPeriod = (int)strtotime('-' . $daysBefore . ' day 23:59:59'); |
|
| 106 | + $endPeriod = (int)strtotime('-' . $daysBefore . ' day 23:59:59'); |
|
| 107 | 107 | |
| 108 | 108 | $this->data[] = $this->getNumberOfErrorsInPeriod($startPeriod, $endPeriod); |
| 109 | 109 | } |
@@ -184,7 +184,7 @@ |
||
| 184 | 184 | protected function resetConstraintsOnMemoryExhaustionError() |
| 185 | 185 | { |
| 186 | 186 | $reservedMemory = new \SplFixedArray(187500); // 3M |
| 187 | - register_shutdown_function(function () use (&$reservedMemory): void { |
|
| 187 | + register_shutdown_function(function() use (&$reservedMemory): void { |
|
| 188 | 188 | $reservedMemory = null; // free the reserved memory |
| 189 | 189 | $error = error_get_last(); |
| 190 | 190 | if (strpos($error['message'], 'Allowed memory size of') !== false) { |