Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / block / tests / modules / block_test / src / Controller / TestMultipleFormController.php
index e7aac65500e96f15ea0a54388b5ce65579ce1e1f..246bcea58f88d6e9b974a81690714ae11a29d4b6 100644 (file)
@@ -17,7 +17,8 @@ class TestMultipleFormController extends ControllerBase {
       'form2' => $this->formBuilder()->buildForm('\Drupal\block_test\Form\FavoriteAnimalTestForm', $form_state),
     ];
 
-    // Output all attached placeholders trough drupal_set_message(), so we can
+    // Output all attached placeholders trough
+    // \Drupal\Core\Messenger\MessengerInterface::addMessage(), so we can
     // see if there's only one in the tests.
     $post_render_callable = function ($elements) {
       $matches = [];
@@ -26,7 +27,7 @@ class TestMultipleFormController extends ControllerBase {
       $action_values = $matches[2];
 
       foreach ($action_values as $action_value) {
-        drupal_set_message('Form action: ' . $action_value);
+        $this->messenger()->addStatus('Form action: ' . $action_value);
       }
       return $elements;
     };