From 3320df92f59fea1e91c4849d98af5c832b68a169 Mon Sep 17 00:00:00 2001 From: Daniel Thee Roperto Date: Mon, 3 Oct 2016 15:42:05 +1100 Subject: [PATCH] MDL-56231 library: Fixed PhpDoc for flexible_table constructor. The flexible_table::__construct($uniqueid) accepts a string, not an int as previously noted in the PhpDoc. --- lib/tablelib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tablelib.php b/lib/tablelib.php index 9d500373c63..7f2d7e68f1c 100644 --- a/lib/tablelib.php +++ b/lib/tablelib.php @@ -133,7 +133,7 @@ class flexible_table { /** * Constructor - * @param int $uniqueid all tables have to have a unique id, this is used + * @param string $uniqueid all tables have to have a unique id, this is used * as a key when storing table properties like sort order in the session. */ function __construct($uniqueid) {