29 lines
		
	
	
		
			431 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			431 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Events\Install;
 | 
						|
 | 
						|
use App\Abstracts\Event;
 | 
						|
 | 
						|
class UpdateDownloaded extends Event
 | 
						|
{
 | 
						|
    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;
 | 
						|
    }
 | 
						|
}
 |