Skip to content

Commit

Permalink
Add missing type information
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Apr 2, 2018
1 parent 1e27eba commit 3c022f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Util/XmlTest.php
Expand Up @@ -18,7 +18,7 @@ class XmlTest extends TestCase
/**
* @dataProvider charProvider
*/
public function testPrepareString($char): void
public function testPrepareString(string $char): void
{
$e = null;

Expand All @@ -40,7 +40,7 @@ public function testPrepareString($char): void
);
}

public function charProvider()
public function charProvider(): array
{
$data = [];

Expand Down

0 comments on commit 3c022f7

Please sign in to comment.