Skip to content

Commit

Permalink
Fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
muglug committed Jun 30, 2019
1 parent 62fb86a commit 8aadf93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TypeParseTest.php
Expand Up @@ -216,7 +216,7 @@ public function testIntersectionOfIterables()
$this->assertSame('iterable<mixed, A>&iterable<mixed, B>', (string) Type::parseString('iterable<A>&iterable<B>'));
}

public function testIterableContainingObjectLike()
public function testIterableContainingObjectLike() : void
{
$this->assertSame('iterable<string, array{0: int}>', Type::parseString('iterable<string, array{int}>')->getId());
}
Expand Down

0 comments on commit 8aadf93

Please sign in to comment.