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');
}
これを設定する方法は?