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 / hook / block_view_BASE_BLOCK_ID_alter.twig
1 /**
2  * Implements hook_block_view_BASE_BLOCK_ID_alter().
3  */
4 function {{ machine_name }}_block_view_BASE_BLOCK_ID_alter(array &$build, \Drupal\Core\Block\BlockPluginInterface $block) {
5   // Change the title of the specific block.
6   $build['#title'] = t('New title of the block');
7 }