12 lines
		
	
	
		
			179 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			179 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
class ImageInfoSetEvent extends Event
 | 
						|
{
 | 
						|
    /** @var Image */
 | 
						|
    public $image;
 | 
						|
 | 
						|
    public function __construct(Image $image)
 | 
						|
    {
 | 
						|
        $this->image = $image;
 | 
						|
    }
 | 
						|
} |