Skip to content
This repository was archived by the owner on Jul 23, 2019. It is now read-only.

Commit e0cced2

Browse files
author
Michael
committed
removed interface prototypes
1 parent fb26aca commit e0cced2

File tree

1 file changed

+0
-51
lines changed

1 file changed

+0
-51
lines changed

lib/php/src/ClientInterface.php

-51
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55

66
interface ClientInterface
77
{
8-
// ##########################################
9-
// ######## core methods
10-
// ##########################################
11-
128
/**
139
* First pass changes unicode characters into emoji markup.
1410
* Second pass changes any shortnames into emoji markup.
@@ -71,51 +67,4 @@ public function toShort($string);
7167
* @return string String with appropriate html for rendering emoji.
7268
*/
7369
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);
12170
}

0 commit comments

Comments
 (0)