Fix Model Policies from matching user_id's and account_id's, and other minor cosmetic fixes
This commit is contained in:
@@ -13,15 +13,15 @@ class OrderRequestReject extends Mailable
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
|
||||
public $service;
|
||||
public $reason;
|
||||
public Service $service;
|
||||
public string $reason;
|
||||
|
||||
/**
|
||||
* Create a new message instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(Service $o,$reason)
|
||||
public function __construct(Service $o,string $reason)
|
||||
{
|
||||
$this->service = $o;
|
||||
$this->reason = $reason;
|
||||
|
Reference in New Issue
Block a user