Skip to content

Commit aed7220

Browse files
Update dependency phpunit/phpunit to ^12.2.7 (#19)
* Update dependency phpunit/phpunit to ^12.2.7 | datasource | package | from | to | | ---------- | --------------- | ------ | ------ | | packagist | phpunit/phpunit | 12.2.6 | 12.2.7 | * CS Fix * CS Fix 2 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Filippo Tessarotto <[email protected]>
1 parent a79e984 commit aed7220

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"php": "~8.3.0 || ~8.4.0"
1515
},
1616
"require-dev": {
17-
"phpunit/phpunit": "^12.2.6",
17+
"phpunit/phpunit": "^12.2.7",
1818
"slam/php-cs-fixer-extensions": "^3.12.0"
1919
},
2020
"autoload": {

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(): iterable
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(): iterable
106106
{
107107
return [
108108
[new stdClass(), 'r(stdClass,'],

0 commit comments

Comments
 (0)