configure stub indentation

This commit is contained in:
Geriano
2022-08-10 04:54:12 +07:00
parent 02bfa6aa5b
commit 97aa7ab512
39 changed files with 1063 additions and 1063 deletions

View File

@@ -9,25 +9,25 @@ use Illuminate\Queue\SerializesModels;
class {{ class }} extends Mailable
{
use Queueable, SerializesModels;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->view('view.name');
}
use Queueable, SerializesModels;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->view('view.name');
}
}