mirror of
https://github.com/flarum/core.git
synced 2025-07-24 18:21:33 +02:00
23 lines
399 B
Plaintext
23 lines
399 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Mail;
|
|
|
|
class Mailable
|
|
{
|
|
/**
|
|
* @param view-string $view
|
|
* @param array<string, mixed> $data
|
|
* @return $this
|
|
*/
|
|
public function markdown($view, array $data = [])
|
|
{}
|
|
|
|
/**
|
|
* @param view-string $view
|
|
* @param array<string, mixed> $data
|
|
* @return $this
|
|
*/
|
|
public function view($view, array $data = [])
|
|
{}
|
|
}
|