Skip to content

Commit

Permalink
[TASK] Fixed CGL issues
Browse files Browse the repository at this point in the history
  • Loading branch information
hojalatheef committed Dec 12, 2024
1 parent e42ff68 commit baf1963
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
1 change: 0 additions & 1 deletion Classes/Command/OpenWeatherMapCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

namespace JWeiland\Weather2\Command;

use JWeiland\Weather2\Service\WeatherDataHandlerService;
use JWeiland\Weather2\Service\WeatherServiceInterface;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Command\Command;
Expand Down
5 changes: 1 addition & 4 deletions Classes/Parser/WarnCellParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,10 @@
namespace JWeiland\Weather2\Parser;

use JWeiland\Weather2\Helper\CsvHelper;
use TYPO3\CMS\Core\Utility\GeneralUtility;

class WarnCellParser implements WarnCellParserInterface
{
public function __construct(private readonly CsvHelper $csvHelper)
{
}
public function __construct(private readonly CsvHelper $csvHelper) {}

/**
* @return array<int, mixed>
Expand Down
2 changes: 1 addition & 1 deletion Classes/UserFunc/Tca.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function getDwdWarnCellTitle(array &$parameters): void
$parameters['title'] = sprintf(
'%s (%s)',
$parameters['row']['name'] ?? '(No Name)',
$record['warn_cell_id'] ?? '(No Warn Cell ID)'
$record['warn_cell_id'] ?? '(No Warn Cell ID)',
);
}
}

0 comments on commit baf1963

Please sign in to comment.