mirror of
https://github.com/grocy/grocy.git
synced 2026-03-27 23:29:25 +01: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);
|
|
}
|
|
}
|