Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
brettmc committed Sep 8, 2024
1 parent 12cbaa4 commit dac691b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ext/otel_observer.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,10 @@ static bool func_has_withspan_attribute(zend_execute_data *ex) {
static bool is_valid_attribute_value(zval *val) {
switch (Z_TYPE_P(val)) {
case IS_STRING:
case IS_LONG: // Numeric (integer)
case IS_DOUBLE: // Numeric (floating point)
case IS_LONG:
case IS_DOUBLE:
case IS_TRUE:
case IS_FALSE: // Boolean
case IS_FALSE:
case IS_ARRAY:
return true;
default:
Expand Down

0 comments on commit dac691b

Please sign in to comment.