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
51
51
{
52
52
$ matcher = static ::exactly (2 );
53
53
$ this ->stream ->expects ($ matcher )
54
- ->method ('info ' )->willReturnCallback (function (...$ parameters ) use ($ matcher ) {
54
+ ->method ('info ' )
55
+ ->willReturnCallback (function (...$ parameters ) use ($ matcher ) {
55
56
static ::assertIsString ($ parameters [0 ]);
56
57
if ($ matcher ->numberOfInvocations () === 1 ) {
57
58
static ::assertStringContainsString ('read ' , $ parameters [0 ]);
@@ -94,7 +95,8 @@ public function testOnPostInstallShouldInjectCode(): void
94
95
{
95
96
$ matcher = static ::exactly (2 );
96
97
$ this ->stream ->expects ($ matcher )
97
- ->method ('info ' )->willReturnCallback (function (...$ parameters ) use ($ matcher ) {
98
+ ->method ('info ' )
99
+ ->willReturnCallback (function (...$ parameters ) use ($ matcher ) {
98
100
static ::assertIsString ($ parameters [0 ]);
99
101
if ($ matcher ->numberOfInvocations () === 1 ) {
100
102
static ::assertStringContainsString ('read ' , $ parameters [0 ]);
You can’t perform that action at this time.
0 commit comments