mirror of
				https://github.com/grocy/grocy.git
				synced 2025-10-31 10:46:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			170 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			170 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Grocy\Controllers;
 | |
| 
 | |
| class BaseApiController extends BaseController
 | |
| {
 | |
| 	protected function ApiResponse($response)
 | |
| 	{
 | |
| 		return json_encode($response);
 | |
| 	}
 | |
| }
 |