File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,8 @@ public function testOnPostInstallAlreadyContainsInjection(): void
5151 {
5252 $ matcher = static ::exactly (2 );
5353 $ this ->stream ->expects ($ matcher )
54- ->method ('info ' )->willReturnCallback (function (...$ parameters ) use ($ matcher ) {
54+ ->method ('info ' )
55+ ->willReturnCallback (function (...$ parameters ) use ($ matcher ) {
5556 static ::assertIsString ($ parameters [0 ]);
5657 if ($ matcher ->numberOfInvocations () === 1 ) {
5758 static ::assertStringContainsString ('read ' , $ parameters [0 ]);
@@ -94,7 +95,8 @@ public function testOnPostInstallShouldInjectCode(): void
9495 {
9596 $ matcher = static ::exactly (2 );
9697 $ this ->stream ->expects ($ matcher )
97- ->method ('info ' )->willReturnCallback (function (...$ parameters ) use ($ matcher ) {
98+ ->method ('info ' )
99+ ->willReturnCallback (function (...$ parameters ) use ($ matcher ) {
98100 static ::assertIsString ($ parameters [0 ]);
99101 if ($ matcher ->numberOfInvocations () === 1 ) {
100102 static ::assertStringContainsString ('read ' , $ parameters [0 ]);
You can’t perform that action at this time.
0 commit comments