17 lines
		
	
	
		
			294 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			294 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace goodboyalex\php_components_pack\tests\data;
 | |
| 
 | |
| class A
 | |
| {
 | |
|     public string $a;
 | |
|     public int $b;
 | |
|     public bool $c;
 | |
| 
 | |
|     public function __construct (string $a = "", int $b = 0, bool $c = false)
 | |
|     {
 | |
|         $this->a = $a;
 | |
|         $this->b = $b;
 | |
|         $this->c = $c;
 | |
|     }
 | |
| } |