Skip to content

Commit a6d87e0

Browse files
committed
Fixed build
1 parent 5e4b7ba commit a6d87e0

4 files changed

+15
-0
lines changed

tests/Type/Symfony/KernelInterfaceDynamicReturnTypeExtensionTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ public function testGet(string $expression, string $type): void
2020
);
2121
}
2222

23+
/**
24+
* @return Iterator<int, array{string, string}>
25+
*/
2326
public function getProvider(): Iterator
2427
{
2528
yield ['$foo', 'string'];

tests/Type/Symfony/RequestDynamicReturnTypeExtensionTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ public function testGetContent(string $expression, string $type): void
2020
);
2121
}
2222

23+
/**
24+
* @return Iterator<int, array{string, string}>
25+
*/
2326
public function getContentProvider(): Iterator
2427
{
2528
yield ['$content1', 'string'];

tests/Type/Symfony/SerializerDynamicReturnTypeExtensionTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ public function testDenormalizerInterface(string $expression, string $type): voi
3939
);
4040
}
4141

42+
/**
43+
* @return Iterator<int, array{string, string}>
44+
*/
4245
public function getContentProvider(): Iterator
4346
{
4447
yield ['$first', 'Bar'];

tests/Type/Symfony/ServiceDynamicReturnTypeExtensionTest.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ public function testServices(string $expression, string $type, ?string $containe
2222
);
2323
}
2424

25+
/**
26+
* @return Iterator<int, array{string, string, string|null}>
27+
*/
2528
public function servicesProvider(): Iterator
2629
{
2730
yield ['$service1', 'Foo', __DIR__ . '/container.xml'];
@@ -56,6 +59,9 @@ public function testConstantHassersOff(string $expression, string $type, ?string
5659
);
5760
}
5861

62+
/**
63+
* @return Iterator<int, array{string, string, string|null}>
64+
*/
5965
public function constantHassersOffProvider(): Iterator
6066
{
6167
yield ['$has1', 'bool', __DIR__ . '/container.xml'];

0 commit comments

Comments
 (0)