akaunting/app/Events/Install/UpdateFinished.php

29 lines
429 B
PHP
Raw Normal View History

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