Correct me if I'm wrong, but I think that placing a hook method in Hooks.php is discouraged, and the more modern way to do this is to use a HookHandler.
Example patch adding a HookHandler to PageTriage: https://github.com/wikimedia/mediawiki-extensions-PageTriage/commit/7b1f0eb1683d12484640983e3a50024c87258d35
If so, PageTriage's 20 or so hook methods located in Hooks.php can be refactored into individual PHP files in the folder includes/HookHandlers.
I believe the main advantage is the ability to dependency inject MediaWiki services/instances.
https://www.mediawiki.org/wiki/Manual:Hooks#Handling_hooks_in_MediaWiki_1.35_and_later