Controllers\xAPI\BaseController::decodeValue PHP Méthode

decodeValue() protected méthode

protected decodeValue ( $value )
    protected function decodeValue($value)
    {
        $decoded = gettype($value) === 'string' ? json_decode($value, true) : $value;
        return isset($decoded) ? $decoded : $value;
    }