Completed
Push — master ( 9feb73...477747 )
by Joachim
25:18 queued 10:20
created
src/Entity/TagValue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
      */
270 270
     public function getId(): int
271 271
     {
272
-        return (int)$this->id;
272
+        return (int) $this->id;
273 273
     }
274 274
 
275 275
     /**
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
      */
288 288
     public function getExternalId(): int
289 289
     {
290
-        return (int)$this->externalId;
290
+        return (int) $this->externalId;
291 291
     }
292 292
 
293 293
     /**
Please login to merge, or discard this patch.
src/Entity/Tag.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      * @inheritdoc
60 60
      */
61 61
     public function addTagValue(TagValue $tagValue) {
62
-        if(!$this->tagValues->contains($tagValue)) {
62
+        if (!$this->tagValues->contains($tagValue)) {
63 63
             $this->tagValues->add($tagValue);
64 64
             $tagValue->setTag($this);
65 65
         }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * @inheritdoc
71 71
      */
72 72
     public function clearTagValues() {
73
-        foreach($this->tagValues as $tagValue) {
73
+        foreach ($this->tagValues as $tagValue) {
74 74
             $this->tagValues->removeElement($tagValue);
75 75
         }
76 76
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      */
83 83
     public function getId(): int
84 84
     {
85
-        return (int)$this->id;
85
+        return (int) $this->id;
86 86
     }
87 87
 
88 88
     /**
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      */
101 101
     public function getExternalId(): int
102 102
     {
103
-        return (int)$this->externalId;
103
+        return (int) $this->externalId;
104 104
     }
105 105
 
106 106
     /**
Please login to merge, or discard this patch.