Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / tests / Drupal / Tests / Core / Form / FormBuilderTest.php
index 76b7584186d80ab3aecdd8ee90cbee1362cc683c..8d20db5c3f1d220d6eab596eb46439516f915a4e 100644 (file)
@@ -881,6 +881,7 @@ class FormBuilderTest extends FormTestBase {
 }
 
 class TestForm implements FormInterface {
+
   public function getFormId() {
     return 'test_form';
   }
@@ -888,11 +889,14 @@ class TestForm implements FormInterface {
   public function buildForm(array $form, FormStateInterface $form_state) {
     return test_form_id();
   }
+
   public function validateForm(array &$form, FormStateInterface $form_state) {}
+
   public function submitForm(array &$form, FormStateInterface $form_state) {}
 
 }
 class TestFormInjected extends TestForm implements ContainerInjectionInterface {
+
   public static function create(ContainerInterface $container) {
     return new static();
   }