Skip to content
Snippets Groups Projects

Issue #3312771: Fixes for coding standards

11 files
+ 10
11
Compare changes
  • Side-by-side
  • Inline
Files
11
@@ -181,7 +181,7 @@ class EntityTypeForm extends FormBase {
$properties[$property] = $definition->getLabel();
}
$field_encrypt_default = isset($default_properties[$field_type]) ? $default_properties[$field_type] : [];
$field_encrypt_default = $default_properties[$field_type] ?? [];
$form[$base_field] = [
'#type' => 'checkboxes',
'#title' => $this->t('@label properties', ['@label' => $base_field_label]),
Loading