File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
src/app/Library/CrudPanel/Traits Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 *
You can’t perform that action at this time.
0 commit comments