We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 821cbc4 commit ed9820eCopy full SHA for ed9820e
1 file changed
src/Entities/Environment.php
@@ -2,6 +2,8 @@
2
3
namespace TapestryCloud\Database\Entities;
4
5
+use Doctrine\Common\Collections\Collection;
6
+
7
/**
8
* @Entity
9
* @Table(name="environments")
@@ -38,6 +40,9 @@ public function setName($name)
38
40
$this->name = $name;
39
41
}
42
43
+ /**
44
+ * @return Collection|ContentType[]
45
+ */
46
public function getContentTypes()
47
{
48
return $this->contentTypes;
@@ -48,6 +53,9 @@ public function addContentType(ContentType $contentType)
53
$this->contentTypes[] = $contentType;
49
54
50
55
56
57
+ * @return Collection|File[]
58
51
59
public function getFiles()
52
60
61
return $this->files;
0 commit comments