mirror of
https://github.com/claradex/nativegallery.git
synced 2024-11-15 03:31:10 +03:00
25 lines
421 B
PHP
25 lines
421 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services;
|
||
|
|
||
|
use \App\Services\DB;
|
||
|
use App\Services\Auth;
|
||
|
use \App\Services\Router;
|
||
|
use \App\Controllers\ExceptionRegister;
|
||
|
use \App\Core\Page;
|
||
|
|
||
|
class Json
|
||
|
{
|
||
|
public function __invoke()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public static function check($params)
|
||
|
{
|
||
|
return json_decode($params, true);
|
||
|
}
|
||
|
public static function return($params = array())
|
||
|
{
|
||
|
return json_encode($params);
|
||
|
}
|
||
|
}
|