File tree 2 files changed +0
-12
lines changed
2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,6 @@ class WP_SQLite_DB extends wpdb {
16
16
/**
17
17
* Database Handle
18
18
*
19
- * @access protected
20
- *
21
19
* @var WP_SQLite_Translator
22
20
*/
23
21
protected $ dbh ;
@@ -315,7 +313,6 @@ public function query( $query ) {
315
313
* This overrides wpdb::load_col_info(), which uses a mysql function.
316
314
*
317
315
* @see wpdb::load_col_info()
318
- * @access protected
319
316
*/
320
317
protected function load_col_info () {
321
318
if ( $ this ->col_info ) {
Original file line number Diff line number Diff line change @@ -31,8 +31,6 @@ class WP_SQLite_Translator {
31
31
/**
32
32
* Class variable to reference to the PDO instance.
33
33
*
34
- * @access private
35
- *
36
34
* @var PDO object
37
35
*/
38
36
private $ pdo ;
@@ -180,8 +178,6 @@ class WP_SQLite_Translator {
180
178
/**
181
179
* Class variable to store the result of the query.
182
180
*
183
- * @access private
184
- *
185
181
* @var array reference to the PHP object
186
182
*/
187
183
private $ results = null ;
@@ -196,17 +192,13 @@ class WP_SQLite_Translator {
196
192
/**
197
193
* Class variable to store the file name and function to cause error.
198
194
*
199
- * @access private
200
- *
201
195
* @var array
202
196
*/
203
197
private $ errors ;
204
198
205
199
/**
206
200
* Class variable to store the error messages.
207
201
*
208
- * @access private
209
- *
210
202
* @var array
211
203
*/
212
204
private $ error_messages = array ();
@@ -215,7 +207,6 @@ class WP_SQLite_Translator {
215
207
* Class variable to store the affected row id.
216
208
*
217
209
* @var int integer
218
- * @access private
219
210
*/
220
211
private $ last_insert_id ;
221
212
You can’t perform that action at this time.
0 commit comments