Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
[#5920] CS fix
Browse files Browse the repository at this point in the history
- opening brace goes on its own line for multi-line conditions
  • Loading branch information
weierophinney committed Mar 7, 2014
1 parent fbb1a32 commit 76b57d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/Zend/Form/View/Helper/FormRow.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ public function render(ElementInterface $element)
$type = $element->getAttribute('type');
if ($type === 'multi_checkbox'
|| $type === 'radio'
|| $element instanceof MonthSelect) {
|| $element instanceof MonthSelect
) {
$markup = sprintf(
'<fieldset><legend>%s</legend>%s</fieldset>',
$label,
Expand Down

0 comments on commit 76b57d2

Please sign in to comment.