Skip to content

Commit

Permalink
Fix missing php typehints
Browse files Browse the repository at this point in the history
Ref: d1917d2

Signed-off-by: William Desportes <[email protected]>
  • Loading branch information
williamdes committed Aug 15, 2021
1 parent 03b615f commit b18edd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Components/ExpressionArrayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function testParse2(): void
$this->assertEquals('(expr)', $component[0]->expr);
}

public function testParseWithCommentsNoOptions()
public function testParseWithCommentsNoOptions(): void
{
$component = ExpressionArray::parse(
new Parser(),
Expand All @@ -41,7 +41,7 @@ public function testParseWithCommentsNoOptions()
$this->assertEquals('(expr)', $component[0]->expr);
}

public function testParseWithCommentsAndOptions()
public function testParseWithCommentsAndOptions(): void
{
$component = ExpressionArray::parse(
new Parser(),
Expand Down

0 comments on commit b18edd6

Please sign in to comment.