Skip to content

Commit e857b3e

Browse files
author
Shawn Hooper
committed
StyleCI fixes
1 parent cbd369a commit e857b3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/EmailAssertions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ public static function assertPlusMailbox(string $expected, $actual): void
4040
[$localPart] = explode('@', $actual, 2);
4141
[$mailbox] = explode('+', $localPart, 2);
4242
PHPUnit::assertSame($expected, $mailbox);
43-
}
43+
}
4444

4545
public static function assertPlusAlias(string $expected, $actual): void
4646
{
4747
PHPUnit::assertIsString($actual);
4848
[$localPart] = explode('@', $actual, 2);
4949
[$mailbox, $alias] = explode('+', $localPart, 2);
5050
PHPUnit::assertSame($expected, $alias);
51-
}
51+
}
5252
}

0 commit comments

Comments
 (0)