Encore\Admin\Layout\Column::__construct PHP Method

__construct() public method

public __construct ( $content, $width = 12 )
    public function __construct($content, $width = 12)
    {
        if ($content instanceof \Closure) {
            call_user_func($content, $this);
        } else {
            $this->append($content);
        }
        $this->width = $width;
    }