Skip to content

Commit 8b129f3

Browse files
committed
Update indenting
1 parent ebe0cc8 commit 8b129f3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/Unit/Plugin/PluginTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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]);

0 commit comments

Comments
 (0)