Во встроенном CakePHP AuthComponent я могу динамически изменять userModel или finder в AppController.php:
userModel
finder
$this->Auth->setConfig('authenticate.Form.finder', 'Custom');
Но в новом плагине аутентификации (https://github.com/cakephp/authentication/blob/master/docs/Migration-from-the-AuthComponent.md#migrate-authcomponent-settings), я установил userModel и finder внутри Application.php.
Теперь, как изменить эти переменные в AppController.php?