| @@ -35,9 +35,9 @@ | ||
| 35 | 35 | |
| 36 | 36 | echo '{ "table": "' . esc_attr( $this->table_names ) . '"'; |
| 37 | 37 | echo ', "info": "Generated by WP Data Access"'; |
| 38 | 38 | echo ', "time": "' . esc_attr( gmdate( 'Y-m-d\TH:i:s\Z' ) ) . '"'; |
| 39 | - if ( is_array( $this->rows ) && count( $this->rows ) > 0 ) {//phpcs:ignore - 8.1 proof | |
| 39 | + if ( is_array( $this->rows ) && count( $this->rows ) > 0 ) { // phpcs:ignore -- 8.1 proof | |
| 40 | 40 | echo ', "columns": ['; |
| 41 | 41 | $first_col = true; |
| 42 | 42 | foreach ( $this->rows[0] as $column_name => $column_value ) { |
| 43 | 43 | if ( $first_col ) { |