Completed
Push — master ( c08f34...05371f )
by Propa
8s
created
src/helpers.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -13,15 +13,15 @@
 block discarded – undo
13 13
 	 * @return string
14 14
 	 */
15 15
 	function phone_format($phone, $country = null, $format = PhoneNumberFormat::INTERNATIONAL)
16
-    	{
17
-        	$lib = App::make('libphonenumber');
16
+		{
17
+			$lib = App::make('libphonenumber');
18 18
 
19
-        	if (!$country) {
20
-        	  $country = App::getLocale();
21
-        	}
19
+			if (!$country) {
20
+			  $country = App::getLocale();
21
+			}
22 22
 
23
-        	$phoneNumber = $lib->parse($phone, $country);
23
+			$phoneNumber = $lib->parse($phone, $country);
24 24
 
25
-        	return $lib->format($phoneNumber, $format);
26
-    	}
25
+			return $lib->format($phoneNumber, $format);
26
+		}
27 27
 }
Please login to merge, or discard this patch.