Skip to content

Commit 43fec3f

Browse files
tabacituStyleCIBot
authored andcommitted
Apply fixes from StyleCI
[ci skip] [skip ci]
1 parent eced295 commit 43fec3f

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -391,15 +391,15 @@ public function makeSureColumnHasNeededAttributes($column)
391391
/**
392392
* Count the number of columns added so far.
393393
*
394-
* It will not take into account the action
394+
* It will not take into account the action
395395
* columns (columns with buttons, checkbox).
396-
*
397-
* @return integer
396+
*
397+
* @return int
398398
*/
399399
public function countColumnsWithoutActions()
400400
{
401401
return collect($this->columns())->filter(function ($column, $key) {
402-
return !isset($column['hasActions']) || $column['hasActions'] == false;
402+
return ! isset($column['hasActions']) || $column['hasActions'] == false;
403403
})->count();
404404
}
405405

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ protected function addColumnToOperationSettings($column)
2020
$this->setOperationSetting('columns', $allColumns);
2121
}
2222

23-
2423
/**
2524
* If a column priority has not been defined, provide a default one.
2625
*

0 commit comments

Comments
 (0)