mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 00:48:13 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			262 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			262 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Ninja\Intents;
 | |
| 
 | |
| class ProductIntent extends BaseIntent
 | |
| {
 | |
|     public function __construct($state, $data)
 | |
|     {
 | |
|         $this->productRepo = app('App\Ninja\Repositories\ProductRepository');
 | |
| 
 | |
|         parent::__construct($state, $data);
 | |
|     }
 | |
| }
 |