League\CommonMark\Reference\Reference::__construct PHP Method

__construct() public method

Constructor
public __construct ( string $label, string $destination, string $title )
$label string
$destination string
$title string
    public function __construct($label, $destination, $title)
    {
        $this->label = self::normalizeReference($label);
        $this->destination = $destination;
        $this->title = $title;
    }