| @@ -41,7 +41,7 @@ | ||
| 41 | 41 |          $option = $this->dom->createElement('option'); | 
| 42 | 42 |          $option->setAttribute('value', $value); | 
| 43 | 43 | $option->textContent = $label; | 
| 44 | -        if($field->getValue() == $option->getAttribute('value')) { | |
| 44 | +        if ($field->getValue() == $option->getAttribute('value')) { | |
| 45 | 45 |              $option->setAttribute('selected', 'selected'); | 
| 46 | 46 | } | 
| 47 | 47 | return $option; | 
| @@ -103,7 +103,7 @@ | ||
| 103 | 103 |          $radio->setAttribute('value', $value); | 
| 104 | 104 | $text = new DOMText($labelText); | 
| 105 | 105 | |
| 106 | -        if(in_array($value, $field->getValue())) { | |
| 106 | +        if (in_array($value, $field->getValue())) { | |
| 107 | 107 |              $radio->setAttribute('checked', 'checked'); | 
| 108 | 108 | } | 
| 109 | 109 | |
| @@ -103,7 +103,7 @@ | ||
| 103 | 103 |          $radio->setAttribute('value', $value); | 
| 104 | 104 | $text = new DOMText($labelText); | 
| 105 | 105 | |
| 106 | -        if($field->getValue() == $radio->getAttribute('value')) { | |
| 106 | +        if ($field->getValue() == $radio->getAttribute('value')) { | |
| 107 | 107 |              $radio->setAttribute('checked', 'checked'); | 
| 108 | 108 | } | 
| 109 | 109 | |
| @@ -195,7 +195,7 @@ | ||
| 195 | 195 |      { | 
| 196 | 196 | $value = $this->getValue(); | 
| 197 | 197 | |
| 198 | -        if ( (!$validator->isValid($value)) && $this->isRequired()) { | |
| 198 | +        if ((!$validator->isValid($value)) && $this->isRequired()) { | |
| 199 | 199 | $this->errorMessages = array_merge($this->errorMessages, $validator->getMessages()); | 
| 200 | 200 | } | 
| 201 | 201 | } |