Bolt\Helpers\Excerpt::__construct PHP 메소드

__construct() 공개 메소드

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);
    }