static::MAX_LENGTH) { throw new InvalidArgumentException( "Url \"{$url}\" must be less than " . static::MAX_LENGTH . ' chars' ); } $this->url = $url; } /** * Return the url from the value object * * @return string */ public function getValue() { return $this->url; } }