Skip to content

Commit

Permalink
fixed phpcs error
Browse files Browse the repository at this point in the history
Signed-off-by: sergiu <[email protected]>
  • Loading branch information
SergiuBota1 committed Dec 4, 2024
1 parent ddb14f4 commit 02f0a76
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/Options/MailOptionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ public function testGettersAndSetters(): void
{
$subject = new MailOptions();

$transport = 'smtp';
$transportMap = ['test' => 'array'];
$messageOptions = ['from' => '', 'to' => []];
$smtpOptions = ['host' => '', 'port' => 587];
$eventListeners = [AbstractMailEventListener::class];
$transport = 'smtp';
$transportMap = ['test' => 'array'];
$messageOptions = ['from' => '', 'to' => []];
$smtpOptions = ['host' => '', 'port' => 587];
$eventListeners = [AbstractMailEventListener::class];

$subject->setTransport($transport);
$subject->setTransportMap($transportMap);
Expand Down

0 comments on commit 02f0a76

Please sign in to comment.