mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			356 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			356 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Crater\Events;
 | 
						|
 | 
						|
use Illuminate\Foundation\Events\Dispatchable;  
 | 
						|
 | 
						|
class UpdateFinished
 | 
						|
{
 | 
						|
    use Dispatchable;
 | 
						|
 | 
						|
    public $new;
 | 
						|
 | 
						|
    public $old;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new event instance.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function __construct($old, $new)
 | 
						|
    {
 | 
						|
        $this->old = $old;
 | 
						|
        $this->new = $new;
 | 
						|
    }
 | 
						|
}
 |