From b70694074b9816ee7ab1fb3774ab53d7788a1ece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sun, 30 Jan 2022 16:54:51 +0100 Subject: [PATCH] Fix: Remove unused method --- test/Unit/Format/IndentTest.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/test/Unit/Format/IndentTest.php b/test/Unit/Format/IndentTest.php index aa07bcb1..d1276d02 100644 --- a/test/Unit/Format/IndentTest.php +++ b/test/Unit/Format/IndentTest.php @@ -318,15 +318,4 @@ private static function sizes(): array 'int-greater-than-one' => self::faker()->numberBetween(2, 5), ]; } - - /** - * @return array - */ - private static function characters(): array - { - return [ - 'space' => ' ', - 'tab' => "\t", - ]; - } }