Skip to content

Commit

Permalink
refactor: Apply PHP7.1 sets
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Wurst <[email protected]>
  • Loading branch information
ChristophWurst committed Sep 17, 2024
1 parent de41b51 commit bfaddda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
phpunit: true,
)
->withPhpSets(
php70: true,
php71: true,
);
2 changes: 1 addition & 1 deletion tests/Integration/Db/RecipientMapperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public function testUpdateRecipients(): void {
$penny->setEmail('[email protected]');
$penny->setLabel('Penny');
$penny->setType(Recipient::TYPE_TO);
$this->mapper->saveRecipients($message->getId(), [$penny], Recipient::TYPE_BCC);
$this->mapper->saveRecipients($message->getId(), [$penny]);

$results = $this->mapper->findByLocalMessageId($message->getId());
$this->assertCount(1, $results);
Expand Down

0 comments on commit bfaddda

Please sign in to comment.