From 659a8001364f853271d01f092a8adb989fff4294 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Mon, 17 Oct 2022 15:53:58 +0200 Subject: [PATCH] Order imports alphabetically MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- src/Config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Config.php b/src/Config.php index ed9d0ef..c3ee446 100644 --- a/src/Config.php +++ b/src/Config.php @@ -46,6 +46,7 @@ public function getRules() : array { 'no_trailing_whitespace' => true, 'no_trailing_whitespace_in_comment' => true, 'no_unused_imports' => true, + 'ordered_imports' => true, 'single_blank_line_at_eof' => true, 'single_class_element_per_statement' => true, 'single_import_per_statement' => true,