From 29406dded1ebb7e89b4709d429da8acfbfd22b0b Mon Sep 17 00:00:00 2001 From: Daniel Thee Roperto Date: Mon, 3 Oct 2016 15:14:04 +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 05b86f57169..246916ee3b8 100644 --- a/lib/tablelib.php +++ b/lib/tablelib.php @@ -127,7 +127,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) {