Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / hook_info.twig
1 /**
2  * Implements hook_hook_info().
3  */
4 function {{ machine_name }}_hook_info() {
5   $hooks['token_info'] = array(
6     'group' => 'tokens',
7   );
8   $hooks['tokens'] = array(
9     'group' => 'tokens',
10   );
11   return $hooks;
12 }