From a0e5b1c69bb1a3b25eafb52672ab5ca0fad93a71 Mon Sep 17 00:00:00 2001 From: Karsten Nowak Date: Mon, 29 Jul 2024 19:44:06 +0200 Subject: [PATCH] [TASK] Move comment directly above the class Related #1120 --- Classes/Command/CreateTestDataCommand.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Classes/Command/CreateTestDataCommand.php b/Classes/Command/CreateTestDataCommand.php index b29b40c..2659173 100644 --- a/Classes/Command/CreateTestDataCommand.php +++ b/Classes/Command/CreateTestDataCommand.php @@ -4,10 +4,6 @@ declare(strict_types=1); namespace TTN\Tea\Command; -/* - * Command to create test data for the tea extension. - */ - use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; @@ -17,6 +13,9 @@ use TYPO3\CMS\Core\Database\Connection; use TYPO3\CMS\Core\Database\ConnectionPool; use TYPO3\CMS\Core\Utility\GeneralUtility; +/* + * Command to create test data for the tea extension. + */ final class CreateTestDataCommand extends Command { /**