1
0
mirror of https://github.com/flarum/core.git synced 2025-09-09 07:31:09 +02:00

feat: STUBS!

This commit is contained in:
Matthew Kilgore
2021-12-01 17:36:36 -05:00
parent c561897f1c
commit 05aa62f70c
35 changed files with 19100 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
<?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 = [])
{}
}