Passed
Push — master ( d5a1bb...855a75 )
by Anthony
02:58
created
core/database/Querybuilder.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -119,6 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
 		/**
121 121
 		 * @param string $order
122
+		 * @param string $type
122 123
 		 */
123 124
 		public function orderBy($order, $type = null) {
124 125
 			if ($type === null) $type = "ASC";
@@ -128,6 +129,10 @@  discard block
 block discarded – undo
128 129
 			return $this;
129 130
 		}
130 131
 
132
+		/**
133
+		 * @param integer $debut
134
+		 * @param integer $fin
135
+		 */
131 136
 		public function limit($debut, $fin) {
132 137
 			$this->limit = " LIMIT ".$debut.", ".$fin." ";
133 138
 
Please login to merge, or discard this patch.