Passed
Branch master (c40258)
by Rogers
02:33
created
src/VCard.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 *  @author Rogers Corrêa
9 9
 */
10 10
 
11
-class VCard{
11
+class VCard {
12 12
 
13 13
     /**
14 14
     * existsElements
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $prefix = '',
95 95
         $suffix = '',
96 96
         $fullName = false
97
-    ){
97
+    ) {
98 98
         // set property
99 99
         $property = $lastName . ';' . $firstName . ';' . $additional . ';' . $prefix . ';' . $suffix;
100 100
         $this->setProperty(
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
             $property
104 104
         );
105 105
 
106
-        if($fullName === true) {
106
+        if ($fullName === true) {
107 107
             $values = array_filter([
108 108
                 $prefix,
109 109
                 $firstName,
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
     {
336 336
         $this->setProperty(
337 337
             'social',
338
-            'X-SOCIALPROFILE;type='. $type,
338
+            'X-SOCIALPROFILE;type=' . $type,
339 339
             $socialProfile
340 340
         );
341 341
 
Please login to merge, or discard this patch.