File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed
Expand file tree Collapse file tree 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)
37383738 }
37393739
37403740 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+ );
37443746 RETURN_THROWS ();
37453747 }
37463748
@@ -3769,9 +3771,11 @@ PHP_METHOD(DateTime, setMicroseconds)
37693771 }
37703772
37713773 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+ );
37753779 RETURN_THROWS ();
37763780 }
37773781
You can’t perform that action at this time.
0 commit comments