summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/notes/php_notes.c2
-rw-r--r--ext/satellite/php_orbit.c3
2 files changed, 5 insertions, 0 deletions
diff --git a/ext/notes/php_notes.c b/ext/notes/php_notes.c
index 32909fb04c..9d6246c773 100644
--- a/ext/notes/php_notes.c
+++ b/ext/notes/php_notes.c
@@ -2225,6 +2225,8 @@ char ItemText[MAX_ITEM_LEN]; /* Text rendering of item value */
char ItemName[MAX_ITEM_NAME_LEN];/* Zero terminated item name */
+/* {{{ proto bool notes_list_msgs(string db)
+ */
PHP_FUNCTION(notes_list_msgs)
{
diff --git a/ext/satellite/php_orbit.c b/ext/satellite/php_orbit.c
index df7ff12763..5fbef2cc52 100644
--- a/ext/satellite/php_orbit.c
+++ b/ext/satellite/php_orbit.c
@@ -166,6 +166,8 @@ PHP_FUNCTION(satellite_get_repository_id)
{
}
+/* {{{ proto bool satellite_caught_exception(void)
+ See if an exception was caught from the previous function */
PHP_FUNCTION(satellite_caught_exception)
{
RETURN_BOOL(orbit_caught_exception());
@@ -177,6 +179,7 @@ PHP_FUNCTION(satellite_exception_id)
RETURN_STRING(p_id, TRUE);
}
+/* }}} */
/* real name: php_if_orbit_exception_value */
PHP_FUNCTION(satellite_exception_value)