Passed
Push — develop ( ac0c4d...5fa478 )
by BENARD
05:05
created
src/Entity/Group.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,9 @@
 block discarded – undo
167 167
      */
168 168
     public function setLibGroupFr(?string $libGroupFr): Group
169 169
     {
170
-        if ($libGroupFr) $this->libGroupFr = $libGroupFr;
170
+        if ($libGroupFr) {
171
+            $this->libGroupFr = $libGroupFr;
172
+        }
171 173
         return $this;
172 174
     }
173 175
 
Please login to merge, or discard this patch.
src/Entity/Game.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -267,7 +267,9 @@
 block discarded – undo
267 267
      */
268 268
     public function setLibGameFr(?string $libGameFr): Game
269 269
     {
270
-        if ($libGameFr) $this->libGameFr = $libGameFr;
270
+        if ($libGameFr) {
271
+            $this->libGameFr = $libGameFr;
272
+        }
271 273
         return $this;
272 274
     }
273 275
 
Please login to merge, or discard this patch.
src/Entity/Chart.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,9 @@
 block discarded – undo
223 223
      */
224 224
     public function setLibChartFr(?string $libChartFr): self
225 225
     {
226
-        if ($libChartFr) $this->libChartFr = $libChartFr;
226
+        if ($libChartFr) {
227
+            $this->libChartFr = $libChartFr;
228
+        }
227 229
         return $this;
228 230
     }
229 231
 
Please login to merge, or discard this patch.