1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01:00
invoiceninja/app/Events/Quote/QuoteWasApproved.php

32 lines
720 B
PHP
Raw Normal View History

<?php
namespace App\Events\Quote;
use App\Models\Quote;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class QuoteWasApproved
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $quote;
2020-06-30 01:35:17 +02:00
public $company;
/**
* Create a new event instance.
*
* @return void
*/
2020-06-30 01:35:17 +02:00
public function __construct(Quote $quote, $company)
{
$this->quote = $quote;
2020-06-30 01:35:17 +02:00
$this->company = $company;
}
}