Skip to content

Commit d2316e5

Browse files
committed
CS Fix
1 parent 802c166 commit d2316e5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/Doctrine/DebugTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function testDisablesOutput(): void
113113
self::assertNotSame($outputValue, $dump);
114114
}
115115

116-
#[DataProvider('provideAttributesCases')]
116+
#[DataProvider('provideExportParentAttributesCases')]
117117
public function testExportParentAttributes(TestAsset\ParentClass $class, array $expected): void
118118
{
119119
$print_r_class = \print_r($class, true);
@@ -131,7 +131,7 @@ public function testExportParentAttributes(TestAsset\ParentClass $class, array $
131131
self::assertSame($expected, $var);
132132
}
133133

134-
public static function provideAttributesCases()
134+
public static function provideExportParentAttributesCases()
135135
{
136136
return [
137137
'different-attributes' => [

tests/RTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,15 @@ public function testClearRootPath(): void
9494
self::assertStringNotContainsString(__DIR__, MockStderr::$output);
9595
}
9696

97-
#[DataProvider('provideCallArgumentDetails')]
97+
#[DataProvider('provideCallArgumentDetailsCases')]
9898
public function testCallArgumentDetails($argument, string $expectedNeedle): void
9999
{
100100
r($argument, false);
101101

102102
self::assertStringContainsString($expectedNeedle, MockStderr::$output);
103103
}
104104

105-
public static function provideCallArgumentDetails(): array
105+
public static function provideCallArgumentDetailsCases(): array
106106
{
107107
return [
108108
[new stdClass(), 'r(stdClass,'],

0 commit comments

Comments
 (0)