Skip to content

Commit

Permalink
Add missing return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed Dec 19, 2024
1 parent e9bbe99 commit ac4d153
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ final class Optimization_Detective_Debug_Tag_Visitor {
/**
* Visits a tag.
*
* This tag visitor doesn't itself request elements to be tracked in URL Metrics, but will reuse tracking that other tag visitors have opted-in to.
*
* @since n.e.x.t
*
* @param OD_Tag_Visitor_Context $context Tag visitor context.
* @return false This tag visitor doesn't itself request elements to be tracked in URL Metrics, but will reuse tracking that other tag visitors have opted-in to.
* @return false Always returns false.
*/
public function __invoke( OD_Tag_Visitor_Context $context ): bool {
$processor = $context->processor;
Expand Down Expand Up @@ -88,5 +90,7 @@ class="od-debug-popover"
);
}
}

return false;
}
}

0 comments on commit ac4d153

Please sign in to comment.