Merge pull request #505

This commit is contained in:
symfony-flex-server[bot]
2018-09-26 04:59:03 +00:00
committed by GitHub
+2 -2
View File
@@ -37,12 +37,12 @@ class Tag implements TagInterface
return $this->id;
}
public function setName($name)
public function setName(?string $name): void
{
$this->name = $name;
}
public function getName()
public function getName(): ?string
{
return $this->name;
}