mirror of https://github.com/flightphp/core
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							446 B
						
					
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							446 B
						
					
					
				<?php
 | 
						|
 | 
						|
class TesterClass
 | 
						|
{
 | 
						|
    public $param1;
 | 
						|
    public $param2;
 | 
						|
    public $param3;
 | 
						|
    public $param4;
 | 
						|
    public $param5;
 | 
						|
    public $param6;
 | 
						|
 | 
						|
    public function __construct($param1, $param2, $param3, $param4, $param5, $param6)
 | 
						|
    {
 | 
						|
        $this->param1 = $param1;
 | 
						|
        $this->param2 = $param2;
 | 
						|
        $this->param3 = $param3;
 | 
						|
        $this->param4 = $param4;
 | 
						|
        $this->param5 = $param5;
 | 
						|
        $this->param6 = $param6;
 | 
						|
    }
 | 
						|
}
 |