Skip to content

Commit

Permalink
Improved code formatting standards by adding file trailing newline.
Browse files Browse the repository at this point in the history
  • Loading branch information
ThierryA committed Jul 31, 2016
1 parent df6f70b commit ec35b02
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/api/fields/types/activation.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ function beans_field_activation( $field ) {
<input type="checkbox" name="<?php echo esc_attr( $field['name'] ); ?>" value="1" <?php checked( $field['value'], 1 ); ?> <?php echo beans_esc_attributes( $field['attributes'] ); ?>/>
<?php

}
}
2 changes: 1 addition & 1 deletion lib/api/fields/types/checkbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ function beans_field_checkbox( $field ) {
<span class="bs-checkbox-label"><?php echo $checkbox_label; ?></span>
<?php endif;

}
}
2 changes: 1 addition & 1 deletion lib/api/fields/types/field.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ function beans_field_description( $field ) {

beans_close_markup_e( 'beans_field_description[_' . $field['id'] . ']', 'div' );

}
}
2 changes: 1 addition & 1 deletion lib/api/fields/types/image.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ function beans_field_image( $field ) {
</div>
<?php

}
}
2 changes: 1 addition & 1 deletion lib/api/fields/types/radio.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ function beans_field_radio( $field ) {
</fieldset>
<?php

}
}
2 changes: 1 addition & 1 deletion lib/api/fields/types/select.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ function beans_field_select( $field ) {
</select>
<?php

}
}
2 changes: 1 addition & 1 deletion lib/api/fields/types/slider.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ function beans_field_slider( $field ) {
<span class="bs-slider-unit"><?php echo $field['unit']; ?></span>
<?php endif;

}
}
2 changes: 1 addition & 1 deletion lib/api/fields/types/text.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ function beans_field_text( $field ) {
<input type="text" name="<?php echo esc_attr( $field['name'] ); ?>" value="<?php echo esc_attr( $field['value'] ); ?>" <?php echo beans_esc_attributes( $field['attributes'] ); ?>>
<?php

}
}
2 changes: 1 addition & 1 deletion lib/api/fields/types/textarea.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ function beans_field_textarea( $field ) {
<textarea name="<?php echo esc_attr( $field['name'] ); ?>" <?php echo beans_esc_attributes( $field['attributes'] ); ?>><?php echo esc_textarea( $field['value'] ); ?></textarea>
<?php

}
}

0 comments on commit ec35b02

Please sign in to comment.