Skip to content
This repository was archived by the owner on Feb 6, 2020. It is now read-only.

Commit 42176f4

Browse files
committed
Broke long line into several lines
1 parent f170072 commit 42176f4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/AbstractFactory/ReflectionBasedAbstractFactoryTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,10 @@ public function testFactoryWillUseDefaultValueWhenPresentForScalarArgument()
151151
{
152152
$this->container->has('config')->willReturn(false);
153153
$factory = new ReflectionBasedAbstractFactory();
154-
$instance = $factory($this->container->reveal(), TestAsset\ClassWithScalarDependencyDefiningDefaultValue::class);
154+
$instance = $factory(
155+
$this->container->reveal(),
156+
TestAsset\ClassWithScalarDependencyDefiningDefaultValue::class
157+
);
155158
$this->assertInstanceOf(TestAsset\ClassWithScalarDependencyDefiningDefaultValue::class, $instance);
156159
$this->assertEquals('bar', $instance->foo);
157160
}

0 commit comments

Comments
 (0)