Completed
Pull Request — master (#36)
by
unknown
16:19
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.
src/LaravelPhoneFacade.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -8,11 +8,11 @@
 block discarded – undo
8 8
  */
9 9
 class LaravelPhoneFacade extends \Illuminate\Support\Facades\Facade
10 10
 {
11
-    /**
12
-     * @return string
13
-     */
14
-    protected static function getFacadeAccessor()
15
-    {
16
-        return 'libphonenumber';
17
-    }
11
+	/**
12
+	 * @return string
13
+	 */
14
+	protected static function getFacadeAccessor()
15
+	{
16
+		return 'libphonenumber';
17
+	}
18 18
 }
Please login to merge, or discard this patch.