Skip to content

Commit 44a7c4f

Browse files
committed
Remove access docs - fixes #38
1 parent 0753b7c commit 44a7c4f

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

wp-includes/sqlite/class-wp-sqlite-db.php

-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ class WP_SQLite_DB extends wpdb {
1616
/**
1717
* Database Handle
1818
*
19-
* @access protected
20-
*
2119
* @var WP_SQLite_Translator
2220
*/
2321
protected $dbh;
@@ -315,7 +313,6 @@ public function query( $query ) {
315313
* This overrides wpdb::load_col_info(), which uses a mysql function.
316314
*
317315
* @see wpdb::load_col_info()
318-
* @access protected
319316
*/
320317
protected function load_col_info() {
321318
if ( $this->col_info ) {

wp-includes/sqlite/class-wp-sqlite-translator.php

-9
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ class WP_SQLite_Translator {
3131
/**
3232
* Class variable to reference to the PDO instance.
3333
*
34-
* @access private
35-
*
3634
* @var PDO object
3735
*/
3836
private $pdo;
@@ -180,8 +178,6 @@ class WP_SQLite_Translator {
180178
/**
181179
* Class variable to store the result of the query.
182180
*
183-
* @access private
184-
*
185181
* @var array reference to the PHP object
186182
*/
187183
private $results = null;
@@ -196,17 +192,13 @@ class WP_SQLite_Translator {
196192
/**
197193
* Class variable to store the file name and function to cause error.
198194
*
199-
* @access private
200-
*
201195
* @var array
202196
*/
203197
private $errors;
204198

205199
/**
206200
* Class variable to store the error messages.
207201
*
208-
* @access private
209-
*
210202
* @var array
211203
*/
212204
private $error_messages = array();
@@ -215,7 +207,6 @@ class WP_SQLite_Translator {
215207
* Class variable to store the affected row id.
216208
*
217209
* @var int integer
218-
* @access private
219210
*/
220211
private $last_insert_id;
221212

0 commit comments

Comments
 (0)