소스 검색

default on string value if json decode fails

tags/0.1.11
Robin Thoni 8 년 전
부모
커밋
853b9d9d86
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3
    0
      src/Utils/LuRoute.php

+ 3
- 0
src/Utils/LuRoute.php 파일 보기

@@ -70,6 +70,9 @@ class LuRoute {
70 70
             try
71 71
             {
72 72
                 $json = json_decode($value, true);
73
+                if (is_null($json)) {
74
+                    $json = $value . "";
75
+                }
73 76
                 $typedValue = call_user_func_array(array($class->getName(), "jsonDeserialize"), array($json));
74 77
             }
75 78
             catch (LuDboDeserializeException $e)

Loading…
취소
저장