summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwn_ <invalid@email.com>2025-04-27 14:50:02 +0000
committerwn_ <invalid@email.com>2025-04-27 14:50:02 +0000
commitae5394f6f9e0ef681f7c2b1699ee6285972991b2 (patch)
tree7254f6e1e6e4ff72e136a76b653a92d3323bb5ac
parent7ad1efed3ef530c2dd3f464c94cd2964e0e1a194 (diff)
Address 'method.resultUnused' in 'api/index.php'.
-rw-r--r--api/index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/api/index.php b/api/index.php
index c468823e1..732b7bd9a 100644
--- a/api/index.php
+++ b/api/index.php
@@ -55,7 +55,8 @@
} else /* if (method_exists($handler, 'index')) */ {
$handler->index($method);
}
- $handler->after();
+ // API isn't currently overriding Handler#after()
+ // $handler->after();
}
header("Api-Content-Length: " . ob_get_length());