Address static analysis issues

This commit is contained in:
Ben Ramsey
2020-02-08 13:14:17 -06:00
parent f965293da9
commit fb4f54fb84
5 changed files with 14 additions and 11 deletions
@@ -12,7 +12,7 @@ class RandomGeneratorFactoryTest extends TestCase
{
public function testFactoryReturnsRandomBytesGenerator(): void
{
$generator = (new RandomGeneratorFactory)->getGenerator();
$generator = (new RandomGeneratorFactory())->getGenerator();
$this->assertInstanceOf(RandomBytesGenerator::class, $generator);
}