Completed
Push — master ( 372cba...d14b76 )
by mw
70:46 queued 33:58
created
src/SQLStore/RedirectInfoStore.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -103,6 +103,10 @@  discard block
 block discarded – undo
103 103
 		$this->inMemoryPoolCache->getPoolCacheById( 'sql.store.redirect.infostore' )->delete( $hash );
104 104
 	}
105 105
 
106
+	/**
107
+	 * @param string $title
108
+	 * @param integer $namespace
109
+	 */
106 110
 	private function select( $title, $namespace ) {
107 111
 
108 112
 		$row = $this->connection->selectRow(
@@ -118,6 +122,11 @@  discard block
 block discarded – undo
118 122
 		return $row !== false && isset( $row->o_id ) ? (int)$row->o_id : 0;
119 123
 	}
120 124
 
125
+	/**
126
+	 * @param integer $id
127
+	 * @param string $title
128
+	 * @param integer $namespace
129
+	 */
121 130
 	private function insert( $id, $title, $namespace ) {
122 131
 
123 132
 		$this->connection->insert(
@@ -130,6 +139,10 @@  discard block
 block discarded – undo
130 139
 		);
131 140
 	}
132 141
 
142
+	/**
143
+	 * @param string $title
144
+	 * @param integer $namespace
145
+	 */
133 146
 	private function delete( $title, $namespace ) {
134 147
 
135 148
 		$this->connection->delete(
Please login to merge, or discard this patch.