joypixels / emojione

[Archived] The world's largest independent emoji font. Maintained at https://github.com/joypixels/emoji-toolkit.
https://www.joypixels.com
Other
4.46k stars 535 forks source link

Proposal: make unicodeRegexp variable constant in PHP client #579

Open ingria opened 6 years ago

ingria commented 6 years ago

Then it would be more convenient to use it somewhere without class instantiation:

$regex = Emojione\Client::UNICODE_REGEX;

vs.:

$regex = (new Emojione\Client())->unicodeRegexp;

https://github.com/emojione/emojione/blob/master/lib/php/src/Client.php#L24