League\CommonMark\Inline\Element\Image::__construct PHP Method

__construct() public method

public __construct ( string $url, string $label = '', string $title = '' )
$url string
$label string
$title string
    public function __construct($url, $label = '', $title = '')
    {
        parent::__construct($url);
        if (is_string($label)) {
            $this->appendChild(new Text($label));
        }
        if (!empty($title)) {
            $this->data['title'] = $title;
        }
    }