Skip to content

Commit

Permalink
Fix code indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ngekoding committed Apr 30, 2022
1 parent 2e1b422 commit 267de27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DataTables.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ protected function filter()
}

// Checking if it using a column alias
$column = isset($this->columnAliases[$column])
? $this->columnAliases[$column]
: $column;
$column = isset($this->columnAliases[$column])
? $this->columnAliases[$column]
: $column;

$columnSearch[] = sprintf("`%s` LIKE '%%%s%%'", $column, $keyword);
}
Expand Down

0 comments on commit 267de27

Please sign in to comment.