File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -348,7 +348,7 @@ static void _php_intlcal_before_after(
348
348
349
349
when_co = Z_INTL_CALENDAR_P (when_object);
350
350
if (when_co->ucal == NULL ) {
351
- zend_argument_error (NULL , 2 , " object is not fully initialized " );
351
+ zend_argument_error (NULL , 2 , " is uninitialized " );
352
352
RETURN_THROWS ();
353
353
}
354
354
@@ -715,7 +715,7 @@ U_CFUNC PHP_FUNCTION(intlcal_is_equivalent_to)
715
715
716
716
other_co = Z_INTL_CALENDAR_P (other_object);
717
717
if (other_co->ucal == NULL ) {
718
- zend_argument_error (NULL , 2 , " object is not fully initialized " );
718
+ zend_argument_error (NULL , 2 , " is uninitialized " );
719
719
RETURN_THROWS ();
720
720
}
721
721
@@ -853,7 +853,7 @@ U_CFUNC PHP_FUNCTION(intlcal_equals)
853
853
CALENDAR_METHOD_FETCH_OBJECT;
854
854
other_co = Z_INTL_CALENDAR_P (other_object);
855
855
if (other_co->ucal == NULL ) {
856
- zend_argument_error (NULL , 2 , " object is not fully initialized " );
856
+ zend_argument_error (NULL , 2 , " is uninitialized " );
857
857
RETURN_THROWS ();
858
858
}
859
859
You can’t perform that action at this time.
0 commit comments