Skip to content
Snippets Groups Projects
Commit 7af47a2d authored by Fabrice Gangler's avatar Fabrice Gangler :art:
Browse files

feat(software): add [ websiteUrl ] property

parent 3373b2b8
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,9 @@ class Software
#[ORM\Column(length: 125)]
private ?string $name = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $websiteUrl = null;
public function getId(): ?int
{
return $this->id;
......@@ -32,4 +35,16 @@ public function setName(string $name): static
return $this;
}
public function getWebsiteUrl(): ?string
{
return $this->websiteUrl;
}
public function setWebsiteUrl(?string $websiteUrl): static
{
$this->websiteUrl = $websiteUrl;
return $this;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment