This commit is contained in:
Paolo A
2024-08-13 13:44:16 +00:00
parent 1bbb23088d
commit e796d76612
4001 changed files with 30101 additions and 40075 deletions

6
vendor/laravel/framework/src/Illuminate/Mail/Mailer.php vendored Normal file → Executable file
View File

@@ -197,7 +197,7 @@ class Mailer implements MailerContract, MailQueueContract
*/
public function html($html, $callback)
{
return $this->send(['html' => new HtmlString($html)], [], $callback);
$this->send(['html' => new HtmlString($html)], [], $callback);
}
/**
@@ -209,7 +209,7 @@ class Mailer implements MailerContract, MailQueueContract
*/
public function raw($text, $callback)
{
return $this->send(['raw' => $text], [], $callback);
$this->send(['raw' => $text], [], $callback);
}
/**
@@ -222,7 +222,7 @@ class Mailer implements MailerContract, MailQueueContract
*/
public function plain($view, array $data, $callback)
{
return $this->send(['text' => $view], $data, $callback);
$this->send(['text' => $view], $data, $callback);
}
/**