Completed
Push — master ( 6c20d0...7e41cb )
by Bahri Meriç
02:27
created
src/Emoji.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 	# WARNING:
5 5
 	# This code is auto-generated. Do not modify it manually.
6 6
 	#
7
-    $GLOBALS['emoji_maps'] = array(
7
+	$GLOBALS['emoji_maps'] = array(
8 8
 		'name_to_unified' => array(
9 9
 			'[BLACK SUN WITH RAYS]'=>                    "\xe2\x98\x80",                                                 
10 10
 			'[CLOUD]'=>                                  "\xe2\x98\x81",                     
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.