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

feat(software): add [ repositoryUrl ] property

parent 7af47a2d
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,9 @@ class Software
#[ORM\Column(length: 255, nullable: true)]
private ?string $websiteUrl = null;
#[ORM\Column(length: 255)]
private ?string $repositoryUrl = null;
public function getId(): ?int
{
return $this->id;
......@@ -47,4 +50,16 @@ public function setWebsiteUrl(?string $websiteUrl): static
return $this;
}
public function getRepositoryUrl(): ?string
{
return $this->repositoryUrl;
}
public function setRepositoryUrl(string $repositoryUrl): static
{
$this->repositoryUrl = $repositoryUrl;
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