Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / tests / Drupal / Tests / Core / Form / FormStateTest.php
index 23579a12a9b81e4dbeb14e9eb461274f8dd0b0a1..aa60d61006ad689bee36b97def0f3eeebfc1df76 100644 (file)
@@ -434,12 +434,15 @@ class FormStateTest extends UnitTestCase {
  * A test form used for the prepareCallback() tests.
  */
 class PrepareCallbackTestForm implements FormInterface {
+
   public function getFormId() {
     return 'test_form';
   }
 
   public function buildForm(array $form, FormStateInterface $form_state) {}
+
   public function validateForm(array &$form, FormStateInterface $form_state) {}
+
   public function submitForm(array &$form, FormStateInterface $form_state) {}
 
 }