invoiceninja/app/Events/PaymentWasRestored.php
Holger Lösken eb049d8ee6 Code Refactoring
- Removed unused uses
- Type hinting for method parameters
- Removed commented code
- Introduced comments for classes and methods
- Short array syntax
2016-07-03 18:11:58 +02:00

30 lines
553 B
PHP

<?php namespace App\Events;
use App\Models\Payment;
use Illuminate\Queue\SerializesModels;
/**
* Class PaymentWasRestored
*/
class PaymentWasRestored extends Event
{
use SerializesModels;
/**
* @var Payment
*/
public $payment;
public $fromDeleted;
/**
* Create a new event instance.
*
* @param Payment $payment
* @param $fromDeleted
*/
public function __construct(Payment $payment, $fromDeleted)
{
$this->payment = $payment;
$this->fromDeleted = $fromDeleted;
}
}