Skip to content

Commit

Permalink
[TASK] Make CSfixer happy
Browse files Browse the repository at this point in the history
  • Loading branch information
georgringer committed Apr 15, 2024
1 parent f3abe45 commit fcb1d54
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
1 change: 0 additions & 1 deletion Classes/Routing/AbstractNewsAliasMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,4 @@ public function __construct(array $settings)
$settings['fallbackValue'] = array_key_exists('fallbackValue', $settings) ? $settings['fallbackValue'] : null;
parent::__construct($settings);
}

}
2 changes: 1 addition & 1 deletion Configuration/TCA/tx_news_domain_model_link.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
'type' => 'select',
'renderType' => 'selectSingle',
'items' => [
['label' => '', 'value' => 0]
['label' => '', 'value' => 0],
],
'foreign_table' => 'tx_news_domain_model_link',
'foreign_table_where' => 'AND tx_news_domain_model_link.pid=###CURRENT_PID### AND tx_news_domain_model_link.sys_language_uid IN (-1,0)',
Expand Down
6 changes: 3 additions & 3 deletions Configuration/TCA/tx_news_domain_model_news.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
'default' => 0,
'items' => [
['label' => '', 'value' => ''],
]
],
],
],

Expand Down Expand Up @@ -190,7 +190,7 @@
'label' => $ll . 'tx_news_domain_model_news.datetime',
'config' => [
'type' => 'datetime',
'required' => $configuration->getDateTimeRequired()
'required' => $configuration->getDateTimeRequired(),
],
],
'archive' => [
Expand Down Expand Up @@ -392,7 +392,7 @@
'default' => 0,
'items' => [
['label' => '', 'value' => ''],
]
],
],
],
'editlock' => [
Expand Down
2 changes: 1 addition & 1 deletion Configuration/TCA/tx_news_domain_model_tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
'type' => 'select',
'renderType' => 'selectSingle',
'items' => [
['label' => '', 'value' => '']
['label' => '', 'value' => ''],
],
'foreign_table' => 'tx_news_domain_model_tag',
'foreign_table_where' => 'AND tx_news_domain_model_tag.pid=###CURRENT_PID### AND tx_news_domain_model_tag.sys_language_uid IN (-1,0)',
Expand Down
3 changes: 0 additions & 3 deletions ext_tables.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<?php

use TYPO3\CMS\Core\Information\Typo3Version;
use TYPO3\CMS\Core\Utility\GeneralUtility;

$boot = static function (): void {
$configuration = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\GeorgRinger\News\Domain\Model\Dto\EmConfiguration::class);

Expand Down

0 comments on commit fcb1d54

Please sign in to comment.