akaunting/app/Events/Common/RelationshipDeleting.php

21 lines
296 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Events\Common;
use App\Abstracts\Event;
class RelationshipDeleting extends Event
{
public $record;
/**
* Create a new event instance.
*
* @param $record
*/
public function __construct($record)
{
$this->record = $record;
}
}