File tree 1 file changed +10
-6
lines changed
1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -3738,9 +3738,11 @@ PHP_METHOD(DateTimeImmutable, setMicroseconds)
3738
3738
}
3739
3739
3740
3740
if (UNEXPECTED (us < 0 || us > 999999 )) {
3741
- zend_throw_error (date_ce_date_range_error ,
3742
- "Microseconds must be between 0 and 999999, " ZEND_LONG_FMT " given" ,
3743
- us );
3741
+ zend_throw_error (
3742
+ date_ce_date_range_error ,
3743
+ "Microseconds must be between 0 and 999999, " ZEND_LONG_FMT " given" ,
3744
+ us
3745
+ );
3744
3746
RETURN_THROWS ();
3745
3747
}
3746
3748
@@ -3769,9 +3771,11 @@ PHP_METHOD(DateTime, setMicroseconds)
3769
3771
}
3770
3772
3771
3773
if (UNEXPECTED (us < 0 || us > 999999 )) {
3772
- zend_throw_error (date_ce_date_range_error ,
3773
- "Microseconds must be between 0 and 999999, " ZEND_LONG_FMT " given" ,
3774
- us );
3774
+ zend_throw_error (
3775
+ date_ce_date_range_error ,
3776
+ "Microseconds must be between 0 and 999999, " ZEND_LONG_FMT " given" ,
3777
+ us
3778
+ );
3775
3779
RETURN_THROWS ();
3776
3780
}
3777
3781
You can’t perform that action at this time.
0 commit comments