소스 검색

stop interpreting null json as string

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

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

@@ -178,9 +178,6 @@ class LuRoute {
178 178
             try
179 179
             {
180 180
                 $json = json_decode($value, true);
181
-                if (is_null($json)) {
182
-                    $json = $value . "";
183
-                }
184 181
                 $typedValue = call_user_func_array(array($class->getName(), "jsonDeserialize"), array($json));
185 182
             }
186 183
             catch (LuDboDeserializeException $e)

Loading…
취소
저장