|
5 | 5 |
|
6 | 6 | interface ClientInterface
|
7 | 7 | {
|
8 |
| - // ########################################## |
9 |
| - // ######## core methods |
10 |
| - // ########################################## |
11 |
| - |
12 | 8 | /**
|
13 | 9 | * First pass changes unicode characters into emoji markup.
|
14 | 10 | * Second pass changes any shortnames into emoji markup.
|
@@ -71,51 +67,4 @@ public function toShort($string);
|
71 | 67 | * @return string String with appropriate html for rendering emoji.
|
72 | 68 | */
|
73 | 69 | public function unicodeToImage($string);
|
74 |
| - |
75 |
| - |
76 |
| - // ########################################## |
77 |
| - // ######## preg_replace callbacks |
78 |
| - // ########################################## |
79 |
| - |
80 |
| - /** |
81 |
| - * @param array $m Results of preg_replace_callback(). |
82 |
| - * @return string Ascii replacement result. |
83 |
| - */ |
84 |
| - public function shortnameToAsciiCallback($m); |
85 |
| - |
86 |
| - /** |
87 |
| - * @param array $m Results of preg_replace_callback(). |
88 |
| - * @return string Unicode replacement result. |
89 |
| - */ |
90 |
| - public function shortnameToUnicodeCallback($m); |
91 |
| - |
92 |
| - /** |
93 |
| - * @param array $m Results of preg_replace_callback(). |
94 |
| - * @return string Image HTML replacement result. |
95 |
| - */ |
96 |
| - public function shortnameToImageCallback($m); |
97 |
| - |
98 |
| - /** |
99 |
| - * @param array $m Results of preg_replace_callback(). |
100 |
| - * @return string Unicode replacement result. |
101 |
| - */ |
102 |
| - public function asciiToUnicodeCallback($m); |
103 |
| - |
104 |
| - /** |
105 |
| - * @param array $m Results of preg_replace_callback(). |
106 |
| - * @return string Image HTML replacement result. |
107 |
| - */ |
108 |
| - public function asciiToImageCallback($m); |
109 |
| - |
110 |
| - /** |
111 |
| - * @param array $m Results of preg_replace_callback(). |
112 |
| - * @return string shortname result |
113 |
| - */ |
114 |
| - public function toShortCallback($m); |
115 |
| - |
116 |
| - /** |
117 |
| - * @param array $m Results of preg_replace_callback(). |
118 |
| - * @return string Image HTML replacement result. |
119 |
| - */ |
120 |
| - public function unicodeToImageCallback($m); |
121 | 70 | }
|
0 commit comments