Code Duplication    Length = 8-8 lines in 2 locations

src/Grid/Filter.php 1 location

@@ 481-488 (lines=8) @@
478
     *
479
     * @return $this
480
     */
481
    public function column($width, \Closure $closure)
482
    {
483
        $width = $width < 1 ? round(12 * $width) : $width;
484
485
        $this->layout->column($width, $closure);
486
487
        return $this;
488
    }
489
490
    /**
491
     * Expand filter container.

src/Form.php 1 location

@@ 1466-1473 (lines=8) @@
1463
     *
1464
     * @return $this
1465
     */
1466
    public function column($width, \Closure $closure): self
1467
    {
1468
        $width = $width < 1 ? round(12 * $width) : $width;
1469
1470
        $this->layout->column($width, $closure);
1471
1472
        return $this;
1473
    }
1474
1475
    /**
1476
     * Initialize filter layout.