v2 first commit
This commit is contained in:
		
							
								
								
									
										30
									
								
								app/Events/Install/UpdateUnzipped.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								app/Events/Install/UpdateUnzipped.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,30 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace App\Events\Install;
 | 
			
		||||
 | 
			
		||||
use Illuminate\Queue\SerializesModels;
 | 
			
		||||
 | 
			
		||||
class UpdateUnzipped
 | 
			
		||||
{
 | 
			
		||||
    use SerializesModels;
 | 
			
		||||
 | 
			
		||||
    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;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user