$callable() ではなく、call_user_func($callable) によりサポートされている非推奨の callable の使用箇所を報告します。

PHP 8.2 以降、次の callable は使用すべきではありません。

"self::method"
"parent::method"
"static::method"
["self", "method"]
["parent", "method"]
["static", "method"]
["Foo", "Bar::method"]
[new Foo, "Bar::method"]

詳しくは、Deprecate partially supported callables (php.net) を参照してください。