Code Duplication    Length = 6-6 lines in 2 locations

src/Grid/Column.php 2 locations

@@ 898-903 (lines=6) @@
895
            $grid = $this->grid;
896
            $column = $this;
897
898
            return $this->display(function ($value) use ($abstract, $grid, $column, $arguments) {
899
                /** @var AbstractDisplayer $displayer */
900
                $displayer = new $abstract($value, $grid, $column, $this);
901
902
                return $displayer->display(...$arguments);
903
            });
904
        }
905
906
        return $this;
@@ 499-504 (lines=6) @@
496
497
        $column = $this;
498
499
        return $this->display(function ($value) use ($grid, $column, $abstract, $arguments) {
500
            /** @var AbstractDisplayer $displayer */
501
            $displayer = new $abstract($value, $grid, $column, $this);
502
503
            return $displayer->display(...$arguments);
504
        });
505
    }
506
507
    /**