Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / install.twig
index aa441fc19406006553b0cfddfdc8d6f85b64c4ba..cdcc1be4892c8a8748a5da2f93196851d8023c20 100644 (file)
@@ -9,14 +9,14 @@
  * Implements hook_install().
  */
 function {{ machine_name }}_install() {
-  drupal_set_message(__FUNCTION__);
+  \Drupal::messenger()->addStatus(__FUNCTION__);
 }
 
 /**
  * Implements hook_uninstall().
  */
 function {{ machine_name }}_uninstall() {
-  drupal_set_message(__FUNCTION__);
+  \Drupal::messenger()->addStatus(__FUNCTION__);
 }
 
 /**