Passed
Push — master ( a8d8c8...64b47e )
by Stefan
01:35
created
SKien/VCard/VCardContact.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,9 +31,9 @@
 block discarded – undo
31 31
     use VCardHelper;
32 32
 
33 33
     /** gender: female (Microsoft specific) */
34
-    public const MS_FEMALE    = '1';
34
+    public const MS_FEMALE = '1';
35 35
     /** gender: male (Microsoft specific) */
36
-    public const MS_MALE    = '2';
36
+    public const MS_MALE = '2';
37 37
     /** Date type: string */
38 38
     public const DT_STRING = 0;
39 39
     /** Date type: unix timestamp */
Please login to merge, or discard this patch.
SKien/VCard/VCardAddress.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,8 +93,8 @@
 block discarded – undo
93 93
         // values separated by semikolon
94 94
         $strValue  = $this->strStr . PHP_EOL;
95 95
         $strValue .= $this->strPostcode . ' ' . $this->strCity . PHP_EOL;
96
-        if (strlen($this->strRegion) > 0 || strlen($this->strCountry) > 0 ) {
97
-            $strSep = (strlen($this->strRegion) > 0 && strlen($this->strCountry) > 0 ) ? ' - ' : '';
96
+        if (strlen($this->strRegion) > 0 || strlen($this->strCountry) > 0) {
97
+            $strSep = (strlen($this->strRegion) > 0 && strlen($this->strCountry) > 0) ? ' - ' : '';
98 98
             $strValue .= $this->strRegion . $strSep . $this->strCountry . PHP_EOL;
99 99
         }
100 100
 
Please login to merge, or discard this patch.