mirror of
https://github.com/grocy/grocy.git
synced 2025-09-19 19:11:48 +00:00
12 lines
168 B
PHP
12 lines
168 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace Grocy\Controllers;
|
||
|
|
||
|
class BaseApiController extends BaseController
|
||
|
{
|
||
|
protected function ApiEncode($response)
|
||
|
{
|
||
|
return json_encode($response);
|
||
|
}
|
||
|
}
|