1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-10 15:14:20 +02:00

refactor(serializers): update params for json decode method

This commit is contained in:
Awilum
2020-08-03 00:34:46 +03:00
parent 47a7bd0aad
commit a33a655973

View File

@@ -78,7 +78,7 @@ class Json
return $data_from_cache;
}
$data = $this->_decode($input);
$data = $this->_decode($input, $assoc, $depth, $flags);
$this->flextype['cache']->save($key, $data);
return $data;