Completed
Push — master ( eb16f0...b029a9 )
by Patrick
03:00
created
class.FlipPage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -839,7 +839,7 @@
 block discarded – undo
839 839
      *
840 840
      * @param string $name The name of the link
841 841
      * @param false|string $url The URL to link to
842
-     * @param false|array $subment Any submenu items for the dropdown
842
+     * @param false|array $submenu Any submenu items for the dropdown
843 843
      */
844 844
     public function addLink($name, $url = false, $submenu = false)
845 845
     {
Please login to merge, or discard this patch.
Data/class.SQLDataSet.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -113,6 +113,9 @@  discard block
 block discarded – undo
113 113
         throw new \Exception('No such table '.$name);
114 114
     }
115 115
 
116
+    /**
117
+     * @param string $tablename
118
+     */
116 119
     function read($tablename, $where = false, $select = '*', $count = false, $skip = false, $sort = false)
117 120
     {
118 121
         if($select === false)
@@ -158,6 +161,9 @@  discard block
 block discarded – undo
158 161
         return $ret;
159 162
     }
160 163
 
164
+    /**
165
+     * @param string $tablename
166
+     */
161 167
     function update($tablename, $where, $data)
162 168
     {
163 169
         $set = array();
@@ -180,6 +186,9 @@  discard block
 block discarded – undo
180 186
         return true;
181 187
     }
182 188
 
189
+    /**
190
+     * @param string $tablename
191
+     */
183 192
     function create($tablename, $data)
184 193
     {
185 194
         $set = array();
@@ -203,6 +212,9 @@  discard block
 block discarded – undo
203 212
         return true;
204 213
     }
205 214
 
215
+    /**
216
+     * @param string $tablename
217
+     */
206 218
     function delete($tablename, $where)
207 219
     {
208 220
         $sql = "DELETE FROM $tablename WHERE $where";
Please login to merge, or discard this patch.