mirror of
https://github.com/brunofontes/shareit.git
synced 2025-11-15 07:50:54 -03:00
style: run php-cs-fixer
This commit is contained in:
@@ -2,18 +2,17 @@
|
||||
|
||||
namespace App\Mail;
|
||||
|
||||
use Lang;
|
||||
use \App\Item;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Mail\Mailable;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Lang;
|
||||
|
||||
class UserWaiting extends Mailable
|
||||
{
|
||||
public $item;
|
||||
public $waitingUser;
|
||||
public $userWithItem;
|
||||
public $userWithItem;
|
||||
use Queueable, SerializesModels;
|
||||
|
||||
/**
|
||||
@@ -37,9 +36,9 @@ class UserWaiting extends Mailable
|
||||
{
|
||||
return $this->subject(
|
||||
Lang::getFromJson(
|
||||
':waitinguser wants to use :itemname',
|
||||
':waitinguser wants to use :itemname',
|
||||
[
|
||||
'waitinguser' => $this->waitingUser,
|
||||
'waitinguser' => $this->waitingUser,
|
||||
'itemname' => $this->item->name
|
||||
]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user