Completed
Push — master ( 83760c...bb5753 )
by PROSPER
02:21
created
src/Emoji.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
         $emoji = strtolower($emojiName);
32 32
 
33
-        if (! array_key_exists($emoji, $this->getEmojis())) {
33
+        if (!array_key_exists($emoji, $this->getEmojis())) {
34 34
             throw UnknownEmoji::create($emoji);
35 35
         }
36 36
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
         $emojis = array_flip($this->getEmojis());
52 52
 
53
-        if (! array_key_exists($unicode, $emojis)) {
53
+        if (!array_key_exists($unicode, $emojis)) {
54 54
             throw UnknownUnicode::create($unicode);
55 55
         }
56 56
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
     public function __call($method, $parameters)
61 61
     {
62
-        if (! method_exists(new static, $method)) {
62
+        if (!method_exists(new static, $method)) {
63 63
             throw UnknownMethod::create($method);
64 64
         }
65 65
     }
Please login to merge, or discard this patch.