Completed
Pull Request — master (#10)
by
unknown
01:21
created
src/EmojiPrinter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 
86 86
     private function shortcode(string $character): string
87 87
     {
88
-        return array_values(array_filter($this->emojis, function ($emojikey) use ($character) {
88
+        return array_values(array_filter($this->emojis, function($emojikey) use ($character) {
89 89
             return strrpos(strtoupper($emojikey), $character) === 0;
90 90
         }, ARRAY_FILTER_USE_KEY))[0] ?? $this->emojis['pass'];
91 91
     }
Please login to merge, or discard this patch.