Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@
class AssertTypeSpecifyingExtensionTest extends TypeInferenceTestCase
{

/**
* @return iterable<mixed>
*/
public function dataFileAsserts(): iterable

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTest.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTest::dataFileAsserts() return type has no value type specified in iterable type iterable.

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTest.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTest::dataFileAsserts() return type has no value type specified in iterable type iterable.

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTest.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTest::dataFileAsserts() return type has no value type specified in iterable type iterable.

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTest.php

View workflow job for this annotation

GitHub Actions / PHPStan (7.4, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTest::dataFileAsserts() return type has no value type specified in iterable type iterable.

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTest.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTest::dataFileAsserts() return type has no value type specified in iterable type iterable.

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTest.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTest::dataFileAsserts() return type has no value type specified in iterable type iterable.
{
yield from $this->gatherAssertTypes(__DIR__ . '/data/array.php');
yield from $this->gatherAssertTypes(__DIR__ . '/data/collection.php');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
class AssertTypeSpecifyingExtensionTestBleedingEdge extends TypeInferenceTestCase
{

/** @return iterable<mixed> */
public function dataFileAsserts(): iterable

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTestBleedingEdge.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTestBleedingEdge::dataFileAsserts() return type has no value type specified in iterable type iterable.

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTestBleedingEdge.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTestBleedingEdge::dataFileAsserts() return type has no value type specified in iterable type iterable.

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTestBleedingEdge.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.4, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTestBleedingEdge::dataFileAsserts() return type has no value type specified in iterable type iterable.

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTestBleedingEdge.php

View workflow job for this annotation

GitHub Actions / PHPStan (7.4, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTestBleedingEdge::dataFileAsserts() return type has no value type specified in iterable type iterable.

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTestBleedingEdge.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTestBleedingEdge::dataFileAsserts() return type has no value type specified in iterable type iterable.

Check failure on line 10 in tests/Type/WebMozartAssert/AssertTypeSpecifyingExtensionTestBleedingEdge.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, lowest)

Method PHPStan\Type\WebMozartAssert\AssertTypeSpecifyingExtensionTestBleedingEdge::dataFileAsserts() return type has no value type specified in iterable type iterable.
{
yield from $this->gatherAssertTypes(__DIR__ . '/data/array-bleeding-edge.php');
}
Expand Down
Loading