From 161ddb927875ea6fdc8965b60e9acd2e9ea02cde Mon Sep 17 00:00:00 2001 From: xjm <xjm@65776.no-reply.drupal.org> Date: Sat, 2 May 2015 14:19:58 -0500 Subject: [PATCH] Issue #1811892 by Mile23: Add missing type hinting to Statistics module docblocks --- core/modules/statistics/statistics.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/modules/statistics/statistics.module b/core/modules/statistics/statistics.module index 00e5b5493c02..7afd2f5c428e 100644 --- a/core/modules/statistics/statistics.module +++ b/core/modules/statistics/statistics.module @@ -125,10 +125,10 @@ function statistics_title_list($dbfield, $dbrows) { /** * Retrieves a node's "view statistics". * - * @param $nid + * @param int $nid * The node ID. * - * @return + * @return array * An associative array containing: * - totalcount: Integer for the total number of times the node has been * viewed. @@ -148,7 +148,7 @@ function statistics_get($nid) { * Implements hook_ENTITY_TYPE_predelete() for node entities. */ function statistics_node_predelete(EntityInterface $node) { - // clean up statistics table when node is deleted + // Clean up statistics table when node is deleted. db_delete('node_counter') ->condition('nid', $node->id()) ->execute(); -- GitLab