diff --git a/tests/unit/DocBlock/Tags/ParamTest.php b/tests/unit/DocBlock/Tags/ParamTest.php index c4651ea..246b57e 100644 --- a/tests/unit/DocBlock/Tags/ParamTest.php +++ b/tests/unit/DocBlock/Tags/ParamTest.php @@ -255,7 +255,12 @@ class ParamTest extends TestCase $description = new Description('My Description'); $descriptionFactory->shouldReceive('create')->with('My Description', $context)->andReturn($description); - $fixture = Param::create('string &...$myParameter My Description', $typeResolver, $descriptionFactory, $context); + $fixture = Param::create( + 'string &...$myParameter My Description', + $typeResolver, + $descriptionFactory, + $context + ); $this->assertSame('string &...$myParameter My Description', (string) $fixture); $this->assertSame('myParameter', $fixture->getVariableName());