Completed
Push — master ( 01f5ad...c7c949 )
by Bahri Meriç
03:08
created
src/LaravelEmojiServiceProvider.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -6,23 +6,23 @@
 block discarded – undo
6 6
 
7 7
 class LaravelEmojiServiceProvider extends ServiceProvider
8 8
 {
9
-    /**
10
-     * Bootstrap the application services.
11
-     *
12
-     * @return void
13
-     */
14
-    public function boot()
15
-    {
9
+	/**
10
+	 * Bootstrap the application services.
11
+	 *
12
+	 * @return void
13
+	 */
14
+	public function boot()
15
+	{
16 16
 	//
17
-    }
17
+	}
18 18
 
19
-    /**
20
-     * Register the application services.
21
-     *
22
-     * @return void
23
-     */
24
-    public function register()
25
-    {
26
-        //
27
-    }
19
+	/**
20
+	 * Register the application services.
21
+	 *
22
+	 * @return void
23
+	 */
24
+	public function register()
25
+	{
26
+		//
27
+	}
28 28
 }
Please login to merge, or discard this patch.
src/LaravelEmoji.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 
9 9
 	static public function covertEmojiToName($data) {
10 10
 		$data = emoji_docomo_to_unified($data);   # DoCoMo devices
11
-	    	$data = emoji_kddi_to_unified($data);     # KDDI & Au devices
12
-    		$data = emoji_softbank_to_unified($data); # Softbank & (iPhone) Apple devices
13
-	    	$data = emoji_google_to_unified($data);   # Google Android devices
11
+			$data = emoji_kddi_to_unified($data);     # KDDI & Au devices
12
+			$data = emoji_softbank_to_unified($data); # Softbank & (iPhone) Apple devices
13
+			$data = emoji_google_to_unified($data);   # Google Android devices
14 14
 		$data = emoji_unified_to_name($data);
15 15
 		$data = emoji_unified_to_key($data);
16 16
 		return $data;
Please login to merge, or discard this patch.