Skip to content

Commit c9b8e01

Browse files
committed
Update phpstan-phpunit to 2.0.8
1 parent 76cea4d commit c9b8e01

File tree

5 files changed

+1
-10
lines changed

5 files changed

+1
-10
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"require-dev": {
2424
"php-parallel-lint/php-parallel-lint": "^1.2",
25-
"phpstan/phpstan-phpunit": "^2.0",
25+
"phpstan/phpstan-phpunit": "^2.0.8",
2626
"phpstan/phpstan-strict-rules": "^2.0",
2727
"phpunit/phpunit": "^9.6",
2828
"psr/container": "1.1.2",

tests/Symfony/DefaultParameterMapTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ public function testGetParameterEscapedPath(): void
2525
self::assertNotNull($serviceMap->getParameter('app.string'));
2626
}
2727

28-
/**
29-
* @return Iterator<mixed>
30-
*/
3128
public function getParameterProvider(): Iterator
3229
{
3330
yield [

tests/Symfony/DefaultServiceMapTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ public function testGetContainerEscapedPath(): void
2525
self::assertNotNull($serviceMap->getService('withClass'));
2626
}
2727

28-
/**
29-
* @return Iterator<mixed>
30-
*/
3128
public function getServiceProvider(): Iterator
3229
{
3330
yield [

tests/Type/Symfony/ExtensionTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
class ExtensionTest extends TypeInferenceTestCase
1313
{
1414

15-
/** @return mixed[] */
1615
public function dataFileAsserts(): iterable
1716
{
1817
yield from $this->gatherAssertTypes(__DIR__ . '/data/messenger_handle_trait.php');

tests/Type/Symfony/ExtensionTestWithoutContainer.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
class ExtensionTestWithoutContainer extends TypeInferenceTestCase
99
{
1010

11-
/** @return mixed[] */
1211
public function dataExampleController(): iterable
1312
{
1413
if (!class_exists('Symfony\Bundle\FrameworkBundle\Controller\Controller')) {
@@ -18,7 +17,6 @@ public function dataExampleController(): iterable
1817
yield from $this->gatherAssertTypes(__DIR__ . '/data/ExampleController.php');
1918
}
2019

21-
/** @return mixed[] */
2220
public function dataAbstractController(): iterable
2321
{
2422
if (!class_exists('Symfony\Bundle\FrameworkBundle\Controller\AbstractController')) {

0 commit comments

Comments
 (0)