akaunting/app/Events/Install/UpdateFinished.php

31 lines
456 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;
use Illuminate\Queue\SerializesModels;
2017-10-02 16:26:45 +03:00
class UpdateFinished
{
2019-11-16 10:21:14 +03:00
use SerializesModels;
2017-10-02 16:26:45 +03:00
public $alias;
public $new;
2019-12-04 18:10:38 +03:00
public $old;
2017-10-02 16:26:45 +03:00
/**
* Create a new event instance.
*
* @param $alias
* @param $old
* @param $new
*/
2019-12-04 18:10:38 +03:00
public function __construct($alias, $new, $old)
2017-10-02 16:26:45 +03:00
{
$this->alias = $alias;
$this->new = $new;
2019-12-04 18:10:38 +03:00
$this->old = $old;
2017-10-02 16:26:45 +03:00
}
2018-10-23 18:47:55 +03:00
}