Skip to content

Commit 451fbe0

Browse files
committed
bug #899 Improving entities contracts (yceruto)
This PR was merged into the master branch. Discussion ---------- Improving entities contracts For example: ```php $post = new Post(); // ... if (!$post->getAuthor()) { // it's null initially so it should be fine allow null return // ... } // ... $post->setAuthor(null); // shouldn't be allowed since the column is not null -> on flush() it'll fail anyway ``` Also it's consistent with `make:entity` command. Commits ------- 9e1deb6 Improving entities contracts
2 parents 34db091 + 9e1deb6 commit 451fbe0

File tree

4 files changed

+20
-21
lines changed

4 files changed

+20
-21
lines changed

src/Entity/Comment.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function isLegitComment(): bool
9090
return !$containsInvalidCharacters;
9191
}
9292

93-
public function getId(): int
93+
public function getId(): ?int
9494
{
9595
return $this->id;
9696
}
@@ -115,7 +115,7 @@ public function setPublishedAt(\DateTime $publishedAt): void
115115
$this->publishedAt = $publishedAt;
116116
}
117117

118-
public function getAuthor(): User
118+
public function getAuthor(): ?User
119119
{
120120
return $this->author;
121121
}
@@ -130,7 +130,7 @@ public function getPost(): ?Post
130130
return $this->post;
131131
}
132132

133-
public function setPost(?Post $post): void
133+
public function setPost(Post $post): void
134134
{
135135
$this->post = $post;
136136
}

src/Entity/Post.php

+10-11
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public function __construct()
128128
$this->tags = new ArrayCollection();
129129
}
130130

131-
public function getId(): int
131+
public function getId(): ?int
132132
{
133133
return $this->id;
134134
}
@@ -138,7 +138,7 @@ public function getTitle(): ?string
138138
return $this->title;
139139
}
140140

141-
public function setTitle(?string $title): void
141+
public function setTitle(string $title): void
142142
{
143143
$this->title = $title;
144144
}
@@ -148,7 +148,7 @@ public function getSlug(): ?string
148148
return $this->slug;
149149
}
150150

151-
public function setSlug(?string $slug): void
151+
public function setSlug(string $slug): void
152152
{
153153
$this->slug = $slug;
154154
}
@@ -158,7 +158,7 @@ public function getContent(): ?string
158158
return $this->content;
159159
}
160160

161-
public function setContent(?string $content): void
161+
public function setContent(string $content): void
162162
{
163163
$this->content = $content;
164164
}
@@ -168,17 +168,17 @@ public function getPublishedAt(): \DateTime
168168
return $this->publishedAt;
169169
}
170170

171-
public function setPublishedAt(?\DateTime $publishedAt): void
171+
public function setPublishedAt(\DateTime $publishedAt): void
172172
{
173173
$this->publishedAt = $publishedAt;
174174
}
175175

176-
public function getAuthor(): User
176+
public function getAuthor(): ?User
177177
{
178178
return $this->author;
179179
}
180180

181-
public function setAuthor(?User $author): void
181+
public function setAuthor(User $author): void
182182
{
183183
$this->author = $author;
184184
}
@@ -188,7 +188,7 @@ public function getComments(): Collection
188188
return $this->comments;
189189
}
190190

191-
public function addComment(?Comment $comment): void
191+
public function addComment(Comment $comment): void
192192
{
193193
$comment->setPost($this);
194194
if (!$this->comments->contains($comment)) {
@@ -198,7 +198,6 @@ public function addComment(?Comment $comment): void
198198

199199
public function removeComment(Comment $comment): void
200200
{
201-
$comment->setPost(null);
202201
$this->comments->removeElement($comment);
203202
}
204203

@@ -207,12 +206,12 @@ public function getSummary(): ?string
207206
return $this->summary;
208207
}
209208

210-
public function setSummary(?string $summary): void
209+
public function setSummary(string $summary): void
211210
{
212211
$this->summary = $summary;
213212
}
214213

215-
public function addTag(?Tag ...$tags): void
214+
public function addTag(Tag ...$tags): void
216215
{
217216
foreach ($tags as $tag) {
218217
if (!$this->tags->contains($tag)) {

src/Entity/Tag.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Tag implements \JsonSerializable
4141
*/
4242
private $name;
4343

44-
public function getId(): int
44+
public function getId(): ?int
4545
{
4646
return $this->id;
4747
}
@@ -51,7 +51,7 @@ public function setName(string $name): void
5151
$this->name = $name;
5252
}
5353

54-
public function getName(): string
54+
public function getName(): ?string
5555
{
5656
return $this->name;
5757
}

src/Entity/User.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class User implements UserInterface, \Serializable
7878
*/
7979
private $roles = [];
8080

81-
public function getId(): int
81+
public function getId(): ?int
8282
{
8383
return $this->id;
8484
}
@@ -88,12 +88,12 @@ public function setFullName(string $fullName): void
8888
$this->fullName = $fullName;
8989
}
9090

91-
public function getFullName(): string
91+
public function getFullName(): ?string
9292
{
9393
return $this->fullName;
9494
}
9595

96-
public function getUsername(): string
96+
public function getUsername(): ?string
9797
{
9898
return $this->username;
9999
}
@@ -103,7 +103,7 @@ public function setUsername(string $username): void
103103
$this->username = $username;
104104
}
105105

106-
public function getEmail(): string
106+
public function getEmail(): ?string
107107
{
108108
return $this->email;
109109
}
@@ -113,7 +113,7 @@ public function setEmail(string $email): void
113113
$this->email = $email;
114114
}
115115

116-
public function getPassword(): string
116+
public function getPassword(): ?string
117117
{
118118
return $this->password;
119119
}

0 commit comments

Comments
 (0)