]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-19470 adding missing inline docs
authorskodak <skodak>
Fri, 12 Jun 2009 08:15:53 +0000 (08:15 +0000)
committerskodak <skodak>
Fri, 12 Jun 2009 08:15:53 +0000 (08:15 +0000)
lib/dml/mysqli_native_moodle_recordset.php
lib/dml/pgsql_native_moodle_recordset.php

index b136d67842b0c9007f00980dd0b1b2516f1f540b..9e1e6e55cab257b888c13573b2137c53fbb909e8 100644 (file)
@@ -27,6 +27,9 @@
 
 require_once($CFG->libdir.'/dml/moodle_recordset.php');
 
+/**
+ * Mysqli specific moodle recordset class
+ */
 class mysqli_native_moodle_recordset extends moodle_recordset {
 
     protected $result;
index 1d52c6d6fa833512cef2860683edcbad645108cc..525a48c916a9788c77f5b2d4605d24ca24780806 100644 (file)
@@ -27,6 +27,9 @@
 
 require_once($CFG->libdir.'/dml/moodle_recordset.php');
 
+/**
+ * pgsql specific moodle recordset class
+ */
 class pgsql_native_moodle_recordset extends moodle_recordset {
 
     protected $result;