Title::moveTo performs permission checks against the $wgUser global. This should be moved into the MovePage application logic class. Title::moveTo has been soft-deprecated since 1.25, it should now be hard-deprecated by having it call wfDeprecated( __METHOD__, '1.25' ).
As a second step, all callers to this method, in core and in extensions maintained by wmf, should be removed.
Rationale: Getting rid Title::moveTo would remove a dependency of Title on User, which is a step towards solving the circular dependency between these two classes.