Bolt\Helpers\Excerpt::__construct PHP Method

__construct() public method

Constructor.
public __construct ( Content | array | string $body, string | null $title = null )
$body Bolt\Legacy\Content | array | string
$title string | null
    public function __construct($body, $title = null)
    {
        $this->body = $body;
        $this->title = trim($title);
    }