Skip to content

Commit 993f1b5

Browse files
committed
Apply CS fixes
1 parent 2668577 commit 993f1b5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

extra/html-extra/Tests/HtmlAttrMergeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class HtmlAttrMergeTest extends TestCase
2222
/**
2323
* @dataProvider htmlAttrProvider
2424
*/
25-
public function testMerge(array $expected, array $inputs): void
25+
public function testMerge(array $expected, array $inputs)
2626
{
2727
$result = HtmlExtension::htmlAttrMerge(...$inputs);
2828

@@ -181,7 +181,7 @@ public static function htmlAttrProvider(): \Generator
181181
];
182182
}
183183

184-
public function testIncompatibleValuesMergeThrowsException(): void
184+
public function testIncompatibleValuesMergeThrowsException()
185185
{
186186
$this->expectException(RuntimeError::class);
187187
$this->expectExceptionMessage('Cannot merge incompatible values for key "test"');

extra/html-extra/Tests/HtmlAttrTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class HtmlAttrTest extends TestCase
2222
/**
2323
* @dataProvider htmlAttrProvider
2424
*/
25-
public function testPrintingAttributes(string $expected, array $inputs): void
25+
public function testPrintingAttributes(string $expected, array $inputs)
2626
{
2727
$result = HtmlExtension::htmlAttr(new Environment(new ArrayLoader()), ...$inputs);
2828

0 commit comments

Comments
 (0)