diff --git a/test/Unit/AbstractNormalizerTestCase.php b/test/Unit/AbstractNormalizerTestCase.php index 71670e9f..d8c1de8f 100644 --- a/test/Unit/AbstractNormalizerTestCase.php +++ b/test/Unit/AbstractNormalizerTestCase.php @@ -46,8 +46,10 @@ final protected function className(): string return $className; } - final protected static function assertJsonStringEqualsJsonStringNormalized(string $expected, string $actual): void - { + final protected static function assertJsonStringEqualsJsonStringNormalized( + string $expected, + string $actual + ): void { $printer = new Printer\Printer(); $normalize = static function (string $json) use ($printer): string { diff --git a/test/Unit/Format/IndentTest.php b/test/Unit/Format/IndentTest.php index 0f8ada5b..245318cf 100644 --- a/test/Unit/Format/IndentTest.php +++ b/test/Unit/Format/IndentTest.php @@ -94,8 +94,11 @@ public function testFromSizeAndStyleRejectsInvalidStyle(): void /** * @dataProvider provideSizeStyleAndIndentString */ - public function testFromSizeAndStyleReturnsIndent(int $size, string $style, string $string): void - { + public function testFromSizeAndStyleReturnsIndent( + int $size, + string $style, + string $string + ): void { $indent = Format\Indent::fromSizeAndStyle( $size, $style, @@ -186,8 +189,10 @@ public function provideValidIndentString(): \Generator * @dataProvider provideMixedIndentAndSniffedIndent * @dataProvider providePureIndentAndSniffedIndent */ - public function testFromJsonReturnsIndentSniffedFromArray(string $actualIndent, string $sniffedIndent): void - { + public function testFromJsonReturnsIndentSniffedFromArray( + string $actualIndent, + string $sniffedIndent + ): void { $json = Json::fromEncoded( <<