Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jul 15, 2024
1 parent 7c9c6e6 commit e0b4667
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Illuminate/Support/Testing/Fakes/MailFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function __construct(MailManager $manager)
* Assert if a mailable was sent based on a truth-test callback.
*
* @param string|\Closure $mailable
* @param callable|int|string|array|null $callback
* @param callable|array|string|int|null $callback
* @return void
*/
public function assertSent($mailable, $callback = null)
Expand Down Expand Up @@ -127,7 +127,7 @@ public function assertNotOutgoing($mailable, $callback = null)
* Determine if a mailable was not sent based on a truth-test callback.
*
* @param string|\Closure $mailable
* @param callable|string|array|null $callback
* @param callable|array|string|null $callback
* @return void
*/
public function assertNotSent($mailable, $callback = null)
Expand Down Expand Up @@ -182,7 +182,7 @@ public function assertNothingSent()
* Assert if a mailable was queued based on a truth-test callback.
*
* @param string|\Closure $mailable
* @param callable|int|string|array|null $callback
* @param callable|array|string|int|null $callback
* @return void
*/
public function assertQueued($mailable, $callback = null)
Expand Down Expand Up @@ -233,7 +233,7 @@ protected function assertQueuedTimes($mailable, $times = 1)
* Determine if a mailable was not queued based on a truth-test callback.
*
* @param string|\Closure $mailable
* @param callable|string|array|null $callback
* @param callable|array|string|null $callback
* @return void
*/
public function assertNotQueued($mailable, $callback = null)
Expand Down

0 comments on commit e0b4667

Please sign in to comment.