-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48763 from nextcloud/dependabot/composer/stable30…
…/symfony-6.4 [stable30] build: Bump symfony/* to 6.4
- Loading branch information
Showing
16 changed files
with
49 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,23 +91,23 @@ public function testSetRecipients(): void { | |
$this->symfonyEmail | ||
->expects($this->once()) | ||
->method('from') | ||
->willReturn(new Address('[email protected]', 'Pierres General Store')); | ||
->with(new Address('[email protected]', 'Pierres General Store')); | ||
$this->symfonyEmail | ||
->expects($this->once()) | ||
->method('to') | ||
->willReturn(new Address('[email protected]', "Lewis' Tent Life")); | ||
->with(new Address('[email protected]', "Lewis' Tent Life")); | ||
$this->symfonyEmail | ||
->expects($this->once()) | ||
->method('replyTo') | ||
->willReturn(new Address('[email protected]', 'Penny')); | ||
->with(new Address('[email protected]', 'Penny')); | ||
$this->symfonyEmail | ||
->expects($this->once()) | ||
->method('cc') | ||
->willReturn(new Address('[email protected]', 'Gunther')); | ||
->with(new Address('[email protected]', 'Gunther')); | ||
$this->symfonyEmail | ||
->expects($this->once()) | ||
->method('bcc') | ||
->willReturn(new Address('[email protected]', 'Pam')); | ||
->with(new Address('[email protected]', 'Pam')); | ||
|
||
$this->message->setRecipients(); | ||
} | ||
|