Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / tests / modules / ajax_forms_test / src / Form / AjaxFormsTestSimpleForm.php
index f69a1232319cd9363e0f334666e108522aa09ab0..3cb8105315e157170666c156d40a2e291f55a88b 100644 (file)
@@ -8,6 +8,8 @@ use Drupal\Core\Form\FormStateInterface;
 
 /**
  * Form builder: Builds a form that triggers a simple AJAX callback.
+ *
+ * @internal
  */
 class AjaxFormsTestSimpleForm extends FormBase {
 
@@ -31,7 +33,8 @@ class AjaxFormsTestSimpleForm extends FormBase {
       '#options' => [
         'red' => 'red',
         'green' => 'green',
-        'blue' => 'blue'],
+        'blue' => 'blue',
+      ],
       '#ajax' => [
         'callback' => [$object, 'selectCallback'],
       ],
@@ -108,7 +111,6 @@ class AjaxFormsTestSimpleForm extends FormBase {
       '#title' => $this->t('Another AJAX checkbox in a nested group'),
     ];
 
-
     return $form;
   }