diff options
| author | wn <4-wn@users.noreply.gitlab.tt-rss.org> | 2025-04-30 16:34:52 +0000 |
|---|---|---|
| committer | wn <4-wn@users.noreply.gitlab.tt-rss.org> | 2025-04-30 16:34:52 +0000 |
| commit | 4ae17d0f1c956bfe392653ab847eb2e3da6f7bfc (patch) | |
| tree | bfecf40fe1a3e7d86d71e367e05d85b4e9e8bf00 /api/index.php | |
| parent | 4cb8a84df46d46bc325b6638defbdc4dc34151ed (diff) | |
| parent | f097c5ed97671f66be71e52c13917c23528ba308 (diff) | |
Merge branch 'feature/phpstan-updates' into 'master'
PHPStan update and addressing findings
See merge request tt-rss/tt-rss!122
Diffstat (limited to 'api/index.php')
| -rw-r--r-- | api/index.php | 3 |
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()); |