tests/phpunit: added missing native typehints

This commit is contained in:
Dylan K. Taylor
2020-02-06 12:13:42 +00:00
parent 7d5f2eac8d
commit e12618c705
4 changed files with 5 additions and 5 deletions

View File

@ -55,7 +55,7 @@ class StupidJsonDecodeTest extends TestCase{
*
* @throws \ReflectionException
*/
public function testStupidJsonDecode(string $brokenJson, $expect){
public function testStupidJsonDecode(string $brokenJson, $expect) : void{
$decoded = ($this->stupidJsonDecodeFunc)($brokenJson, true);
self::assertEquals($expect, $decoded);
}