Completed
Pull Request — master (#9)
by
unknown
05:12
created
src/Emoji.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
         $emoji = strtolower($emojiName);
41 41
 
42
-        if (! array_key_exists($emoji, $this->getEmojis())) {
42
+        if (!array_key_exists($emoji, $this->getEmojis())) {
43 43
             throw UnknownEmoji::create($emoji);
44 44
         }
45 45
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
         $emojis = array_flip($this->getEmojis());
74 74
 
75
-        if (! array_key_exists($unicode, $emojis)) {
75
+        if (!array_key_exists($unicode, $emojis)) {
76 76
             throw UnknownUnicode::create($unicode);
77 77
         }
78 78
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      */
88 88
     public function __call($method, $parameters)
89 89
     {
90
-        if (! method_exists(new static, $method)) {
90
+        if (!method_exists(new static, $method)) {
91 91
             throw UnknownMethod::create($method);
92 92
         }
93 93
     }
Please login to merge, or discard this patch.