我正在使用ibuildings ZF。当我按下Ctr + Shift + F. 代码以这种方式格式化
$adapter = $this->getAuthAdapter(
$form->getValues());
$auth = Zend_Auth::getInstance();
$result = $auth->authenticate($adapter);
if (! $result->isValid()) {
$form->setDescription(
'Invalid credentials provided');
$this->view->form = $form;
return $this->render('index');
}
但我希望以这种方式格式化
$adapter = $this->getAuthAdapter($form->getValues());
$auth = Zend_Auth::getInstance();
$result = $auth->authenticate($adapter);
if (! $result->isValid()) {
$form->setDescription('Invalid input');
$this->view->form = $form;
return $this->render('index');
}
如何配置?
答案 0 :(得分:1)
可以在Window>中配置格式化程序。偏好> PHP>代码风格>格式化器>编辑...>换行。
所有设置都选择“不要换行”。