Skip to content

Commit 24dfe6e

Browse files
committed
Apply fixes from StyleCI
[ci skip] [skip ci]
1 parent 1bc8f39 commit 24dfe6e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/app/Library/CrudPanel/Traits/Search.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -394,10 +394,10 @@ public function getEntriesAsJsonForDatatables($entries, $totalRows, $filteredRow
394394
}
395395

396396
return [
397-
'draw' => (isset($this->getRequest()['draw']) ? (int) $this->getRequest()['draw'] : 0),
398-
'recordsTotal' => $totalRows,
397+
'draw' => (isset($this->getRequest()['draw']) ? (int) $this->getRequest()['draw'] : 0),
398+
'recordsTotal' => $totalRows,
399399
'recordsFiltered' => $filteredRows,
400-
'data' => $rows,
400+
'data' => $rows,
401401
];
402402
}
403403

@@ -415,6 +415,6 @@ public function getColumnWithTableNamePrefixed($query, $column)
415415

416416
private function isJsonColumnType(string $columnName)
417417
{
418-
return $this->model->getDbTableSchema()->getColumnType($columnName) === 'json';
418+
return $this->model->getDbTableSchema()->getColumnType($columnName) === 'json';
419419
}
420420
}

0 commit comments

Comments
 (0)