mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-12 21:45:56 +00:00
PHPStan warning fix in 'backend.php'.
This commit is contained in:
@@ -124,7 +124,7 @@
|
|||||||
$handler = $reflection->newInstanceWithoutConstructor();
|
$handler = $reflection->newInstanceWithoutConstructor();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($handler && implements_interface($handler, 'IHandler')) {
|
if (implements_interface($handler, 'IHandler')) {
|
||||||
$handler->__construct($_REQUEST);
|
$handler->__construct($_REQUEST);
|
||||||
|
|
||||||
if (validate_csrf($csrf_token) || $handler->csrf_ignore($method)) {
|
if (validate_csrf($csrf_token) || $handler->csrf_ignore($method)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user