Skip to content

Commit

Permalink
Remove void return type. Fix #1367
Browse files Browse the repository at this point in the history
  • Loading branch information
yajra committed Sep 6, 2017
1 parent 06ddfea commit cb50ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QueryDataTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ protected function hasOrderColumn($column)
* @param string $column
* @param array $orderable
*/
protected function applyOrderColumn($column, $orderable): void
protected function applyOrderColumn($column, $orderable)
{
$sql = $this->columnDef['order'][$column]['sql'];
$sql = str_replace('$1', $orderable['direction'], $sql);
Expand Down

0 comments on commit cb50ba3

Please sign in to comment.