Fix code review syntax remarks [MAILPOET-903]

This commit is contained in:
stoletniy
2018-02-26 16:30:53 +03:00
parent b9546b61a8
commit 03015c0bde
8 changed files with 11 additions and 11 deletions

View File

@ -83,7 +83,7 @@ class Migration extends SimpleWorker {
static function checkUnmigratedColumnsExist() {
global $wpdb;
$existing_columns = $wpdb->get_col('DESC ' . SendingQueue::$_table, 0);
$existing_columns = $wpdb->get_col('DESC ' . SendingQueue::$_table);
return in_array('type', $existing_columns);
}