@@ -39,7 +39,7 @@ discard block |
||
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 |
||
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 |
||
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 | } |