akaunting/app/Events/Install/UpdateCopied.php

29 lines
427 B
PHP
Raw Normal View History

2017-10-02 16:26:45 +03:00
<?php
2019-11-16 10:21:14 +03:00
namespace App\Events\Install;
2017-10-02 16:26:45 +03:00
2020-11-21 20:24:42 +03:00
use App\Abstracts\Event;
2019-11-16 10:21:14 +03:00
2020-11-21 20:24:42 +03:00
class UpdateCopied extends Event
2017-10-02 16:26:45 +03:00
{
public $alias;
public $old;
public $new;
/**
* Create a new event instance.
*
* @param $alias
* @param $old
* @param $new
*/
public function __construct($alias, $old, $new)
{
$this->alias = $alias;
$this->old = $old;
$this->new = $new;
}
2018-10-23 18:47:55 +03:00
}