The content of the user_activity_log.module file is the following.

/**
 * @file
 * Implements hook_theme().
 */

function user_activity_log_theme($existing, $type, $theme, $path) {
  // {@inheritdoc}.
  return [
    'user_activity_log_tpl' => [
      'variables' => [
        'nodes_count' => NULL,
        'comment_count' => NULL,
        'list_nodes' => NULL,
        'list_comments' => NULL,
      ],
      'template' => 'user-activity-log-tpl',
    ],
  ];
}

The description for the module file is wrong.
The hook implementation misses its documentation comment.
{@inheritdoc} is not used in comments inside functions nor methods.

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

apaderno created an issue. See original summary.

avpaderno’s picture

Status: Active » Needs review
chanderbhushan’s picture

Thanks for you support

chanderbhushan’s picture

Status: Needs review » Fixed
chanderbhushan’s picture

Status: Fixed » Closed (fixed)