2015-03-31 19:42:37 +02:00
|
|
|
<?php namespace App\Events;
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
use App\Models\Payment;
|
2015-03-31 19:42:37 +02:00
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* Class PaymentWasRestored
|
|
|
|
*/
|
|
|
|
class PaymentWasRestored extends Event
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
2015-10-29 23:27:26 +01:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @var Payment
|
|
|
|
*/
|
2015-03-31 20:50:58 +02:00
|
|
|
public $payment;
|
2015-10-29 23:27:26 +01:00
|
|
|
public $fromDeleted;
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @param Payment $payment
|
|
|
|
* @param $fromDeleted
|
|
|
|
*/
|
|
|
|
public function __construct(Payment $payment, $fromDeleted)
|
2015-10-28 20:22:07 +01:00
|
|
|
{
|
|
|
|
$this->payment = $payment;
|
2015-10-29 23:27:26 +01:00
|
|
|
$this->fromDeleted = $fromDeleted;
|
2015-10-28 20:22:07 +01:00
|
|
|
}
|
2015-03-31 19:42:37 +02:00
|
|
|
}
|