Reorganize project part 2

This commit is contained in:
Bernd Bestel
2018-04-11 19:51:05 +02:00
parent bcd5092427
commit feb88ab685
56 changed files with 1988 additions and 826 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
namespace Grocy\Controllers;
class BaseApiController extends BaseController
{
protected function ApiEncode($response)
{
return json_encode($response);
}
}