Passed
Push — master ( 1aa831...d5df0d )
by Misha
02:51
created
src/Entity/PhoneNumber.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,12 +103,12 @@
 block discarded – undo
103 103
             $areaCode = \ltrim($areaCode, '0');
104 104
         }
105 105
         if (strpos($areaCode, '0') !== 0 && (empty($countryCode) || \strpos($format, 'c') === false)) {
106
-            $areaCode = '0' .$areaCode;
106
+            $areaCode = '0' . $areaCode;
107 107
         }
108 108
         return trim(
109 109
             (string)\preg_replace_callback(
110 110
                 '![cas]!',
111
-                static function (array $matches) use ($countryCode, $areaCode, $subscriberNumber) {
111
+                static function(array $matches) use ($countryCode, $areaCode, $subscriberNumber) {
112 112
                     switch ($matches[0]) {
113 113
                         case 'c':
114 114
                             return $countryCode;
Please login to merge, or discard this patch.