Skip to content

Commit 44f9651

Browse files
committed
Coding style
1 parent b981fc1 commit 44f9651

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

ext/date/php_date.c

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)