| @@ 293-297 (lines=5) @@ | ||
| 290 | $return = static::create(); |
|
| 291 | $jsonObject = \json_decode($json, false); |
|
| 292 | $mapper = new \Arrayy\Mapper\Json(); |
|
| 293 | $mapper->undefinedPropertyHandler = static function ($object, $key, $jsonValue) use ($return) { |
|
| 294 | if ($return->checkForMissingPropertiesInConstructor) { |
|
| 295 | throw new \TypeError('Property mismatch - input: ' . \print_r(['key' => $key, 'jsonValue' => $jsonValue], true) . ' for object: ' . \get_class($object)); |
|
| 296 | } |
|
| 297 | }; |
|
| 298 | ||
| 299 | $type = $return->getType(); |
|
| 300 | ||
| @@ 3008-3012 (lines=5) @@ | ||
| 3005 | $jsonObject = \json_decode($json, false); |
|
| 3006 | ||
| 3007 | $mapper = new \Arrayy\Mapper\Json(); |
|
| 3008 | $mapper->undefinedPropertyHandler = static function ($object, $key, $jsonValue) use ($class) { |
|
| 3009 | if ($class->checkPropertiesMismatchInConstructor) { |
|
| 3010 | throw new \TypeError('Property mismatch - input: ' . \print_r(['key' => $key, 'jsonValue' => $jsonValue], true) . ' for object: ' . \get_class($object)); |
|
| 3011 | } |
|
| 3012 | }; |
|
| 3013 | ||
| 3014 | return $mapper->map($jsonObject, $class); |
|
| 3015 | } |
|