Skip to content

Commit c85ca70

Browse files
committed
Remove commented out code.
1 parent 550509e commit c85ca70

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/Chumper/Datatable/Engines/BaseEngine.php

-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,6 @@ protected function handleiSortCol_0($value)
488488
*/
489489
protected function handleSingleColumnSearch($columnIndex, $searchValue)
490490
{
491-
//dd($columnIndex, $searchValue, $this->searchColumns);
492491
if (!isset($this->searchColumns[$columnIndex])) return;
493492
if (empty($searchValue) && $searchValue !== '0') return;
494493

src/Chumper/Datatable/Engines/QueryEngine.php

-2
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,6 @@ protected function internalMake(Collection $columns, array $searchColumns = arra
242242
*/
243243
private function getQuery($builder)
244244
{
245-
// dd($builder->toSql());
246245
if (is_null($this->collection)) {
247246
if ($this->skip > 0) {
248247
$builder = $builder->skip($this->skip);
@@ -363,7 +362,6 @@ private function compile($builder, $columns)
363362

364363
private function doInternalOrder($builder, $columns)
365364
{
366-
//var_dump($this->orderColumn);
367365
if(!is_null($this->orderColumn))
368366
{
369367
foreach ($this->orderColumn as $ordCol) {

0 commit comments

Comments
 (0)