Skip to content

Commit fb1bf00

Browse files
committed
test: update coding style
1 parent b7849fe commit fb1bf00

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/system/HTTP/SiteURITest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function provideConstructor(): iterable
6565
return array_merge($this->provideSetPath(), $this->provideRelativePathWithQueryOrFragment());
6666
}
6767

68-
public function provideSetPath(): iterable
68+
public static function provideSetPath(): iterable
6969
{
7070
return [
7171
'' => [

tests/system/Helpers/ArrayHelperTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ public function testArrayGroupByExcludeEmpty(array $indexes, array $data, array
519519
$this->assertSame($expected, $actual, 'array excluding empty not the same');
520520
}
521521

522-
public function provideArrayGroupByIncludeEmpty(): iterable
522+
public static function provideArrayGroupByIncludeEmpty(): iterable
523523
{
524524
yield 'simple group-by test' => [
525525
['color'],
@@ -930,7 +930,7 @@ public function provideArrayGroupByIncludeEmpty(): iterable
930930
];
931931
}
932932

933-
public function provideArrayGroupByExcludeEmpty(): iterable
933+
public static function provideArrayGroupByExcludeEmpty(): iterable
934934
{
935935
yield 'simple group-by test' => [
936936
['color'],

tests/system/View/TableTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ public function testGenerateOrderedColumns(array $heading, array $row, string $e
791791
$this->assertStringContainsString($expectContainsString, $generated);
792792
}
793793

794-
public function orderedColumnUsecases(): iterable
794+
public static function orderedColumnUsecases(): iterable
795795
{
796796
yield from [
797797
'reorder example #1' => [

0 commit comments

Comments
 (0)