File tree 2 files changed +15
-7
lines changed
2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 3.10.2] - 2022-11-08
8
+
9
+ ### Added
10
+ - Exceptions improved, [ #60 ] ( https://github.com/swaggest/json-diff/pull/59 ) .
11
+
7
12
## [ 3.10.1] - 2022-10-24
8
13
9
14
### Added
@@ -85,6 +90,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
85
90
### Added
86
91
- Compatibility option to ` TOLERATE_ASSOCIATIVE_ARRAYS ` that mimic JSON objects.
87
92
93
+ [ 3.10.2 ] : https://github.com/swaggest/json-diff/compare/v3.10.1...v3.10.2
88
94
[ 3.10.1 ] : https://github.com/swaggest/json-diff/compare/v3.10.0...v3.10.1
89
95
[ 3.10.0 ] : https://github.com/swaggest/json-diff/compare/v3.9.0...v3.10.0
90
96
[ 3.9.0 ] : https://github.com/swaggest/json-diff/compare/v3.8.3...v3.9.0
Original file line number Diff line number Diff line change @@ -70,13 +70,6 @@ public static function import(array $data)
70
70
throw new MissingFieldException ('path ' , $ operation );
71
71
}
72
72
73
- if (!is_string ($ operation ->op )) {
74
- throw new InvalidFieldTypeException ('op ' , 'string ' , $ operation );
75
- }
76
- if (!is_string ($ operation ->path )) {
77
- throw new InvalidFieldTypeException ('path ' , 'string ' , $ operation );
78
- }
79
-
80
73
$ op = null ;
81
74
switch ($ operation ->op ) {
82
75
case Add::OP :
@@ -98,8 +91,17 @@ public static function import(array $data)
98
91
$ op = new Test ();
99
92
break ;
100
93
default :
94
+ if (!is_string ($ operation ->op )) {
95
+ throw new InvalidFieldTypeException ('op ' , 'string ' , $ operation );
96
+ }
97
+
101
98
throw new UnknownOperationException ($ operation );
102
99
}
100
+
101
+ if (!is_string ($ operation ->path )) {
102
+ throw new InvalidFieldTypeException ('path ' , 'string ' , $ operation );
103
+ }
104
+
103
105
$ op ->path = $ operation ->path ;
104
106
if ($ op instanceof OpPathValue) {
105
107
if (property_exists ($ operation , 'value ' )) {
You can’t perform that action at this time.
0 commit comments