Skip to content

Commit 0a8e7d7

Browse files
PierreLebedelgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 82e0ed4 commit 0a8e7d7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/VCardsCollection.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,13 @@ public function first(): ?AbstractVCard
5252
return $this->vCards[0] ?? null;
5353
}
5454

55-
public function __toString() :string
55+
public function __toString(): string
5656
{
5757
$collectionString = '';
58-
foreach($this->vCards as $vCard){
58+
foreach ($this->vCards as $vCard) {
5959
$collectionString .= (string) $vCard;
6060
}
61+
6162
return $collectionString;
6263
}
6364

0 commit comments

Comments
 (0)