mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 01:32:38 +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);
|
|
}
|
|
}
|