Skip to content

Commit 06db234

Browse files
php-cs-fixer fix --rules='{"ordered_imports": {"sort_algorithm":"alpha"}}' src
1 parent 73dda5d commit 06db234

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Controller/AbstractAppController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
use Symfony\Component\HttpFoundation\Request;
1313
use Symfony\Component\HttpFoundation\Response;
1414
use Symfony\Component\HttpKernel\Exception\ServiceUnavailableHttpException;
15-
use Symfony\Contracts\Translation\TranslatorInterface;
1615
use Symfony\Contracts\Service\Attribute\Required;
16+
use Symfony\Contracts\Translation\TranslatorInterface;
1717

1818
abstract class AbstractAppController extends AbstractController
1919
{

src/Controller/AppIndexDatabaseImportController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
namespace App\Controller;
66

7-
use PDO;
8-
use PDOException;
97
use App\Controller\AbstractAppController;
108
use App\Manager\ElasticsearchIndexManager;
119
use App\Model\CallRequestModel;
10+
use PDO;
11+
use PDOException;
1212
use Symfony\Component\HttpFoundation\JsonResponse;
1313
use Symfony\Component\HttpFoundation\Request;
1414
use Symfony\Component\HttpFoundation\Response;

0 commit comments

Comments
 (0)