We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bfda8c commit 4eb5e51Copy full SHA for 4eb5e51
geospatial.c
@@ -913,7 +913,7 @@ PHP_FUNCTION(rdp_simplify)
913
return;
914
}
915
916
- if (!Z_TYPE_P(points_array) == IS_ARRAY) {
+ if (Z_TYPE_P(points_array) != IS_ARRAY) {
917
918
919
@@ -1027,7 +1027,7 @@ PHP_FUNCTION(interpolate_polygon)
1027
1028
1029
1030
- if (!Z_TYPE_P(polygon) == IS_ARRAY) {
+ if (Z_TYPE_P(polygon) != IS_ARRAY) {
1031
1032
1033
0 commit comments