eZ\Publish\Core\FieldType\Url\Value::__construct PHP Method

__construct() public method

Construct a new Value object and initialize it with its $link and optional $text.
public __construct ( string $link = null, string $text = null )
$link string
$text string
    public function __construct($link = null, $text = null)
    {
        $this->link = $link;
        $this->text = $text;
    }